IF/AND formula based on a drop down column if the cell is blank
Hi All,
I am working on a formula to trigger my at- risk flag based on the following information.
Raise the flag if the end date column is less that 1 day away and the status column is blank or Not Started.
Here is what I have so far.
=IF(AND(Status3 = "Not Started", [End Date]3 <= TODAY(2)), 1)
Best Answer
-
That is because a blank date field is considered "less than today". Try this little tweak...
=IF(AND(OR(Status@row= "", Status@row = "Not Started"), [End Date]@row <> "", [End Date]@row <= TODAY(1)), 1)
Answers
-
You could try something like this...
=IF(AND(OR(Status@row= "", Status@row = "Not Started"), [End Date]@row <= TODAY(1)), 1)
-
It worked but it marks it red even if there is no date populated yet!
-
That is because a blank date field is considered "less than today". Try this little tweak...
=IF(AND(OR(Status@row= "", Status@row = "Not Started"), [End Date]@row <> "", [End Date]@row <= TODAY(1)), 1)
-
AMAZING! That worked! thank you!
-
Happy to help! 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 494 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!