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
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 141 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!