Formula IF; AND; ISBLANK; NOT
Need some assistance please. I looked at previous similar errors and comments however could not get this formula to work.
At Risk is a Flag - Symbol - Flag when the End Date is higher than today however the Status is not "Complete". Sometimes the End Date is blank and therefor require the ISBLANK formula.
My initial formula was:
=IF(AND([End Date]@row < TODAY(); NOT(Status@row = "Complete")); 1; 0)
-It works however also flag the empty End Date as a Risk.
Then tried some other ways however keep on getting errors:
=IF(AND(ISBLANK([End Date]@row)); [End Date]@row < TODAY(); NOT(Status@row = "Complete"); 1; 0)
Could somebody please take a look at assist me?
Thank you.
Best Answer
-
=IF(ISBLANK([End Date]@row); 0;IF(AND([End Date]@row < TODAY(); NOT(Status@row = "Complete")); 1; 0))
See how this works out for you
If you found this comment helpful. Please respond with any of the buttons below. Awesome🖤, Insightful💡, Upvote⬆️, or accepted answer. Not only will this help others searching for the same answer, but help me as well. Thank you.
Answers
-
=IF(ISBLANK([End Date]@row); 0;IF(AND([End Date]@row < TODAY(); NOT(Status@row = "Complete")); 1; 0))
See how this works out for you
If you found this comment helpful. Please respond with any of the buttons below. Awesome🖤, Insightful💡, Upvote⬆️, or accepted answer. Not only will this help others searching for the same answer, but help me as well. Thank you.
-
Thanks Mark.poole you are a LEGEND!!!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 205 Use Cases
- 516 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 82 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!