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
- 63.5K Get Help
- 402 Global Discussions
- 213 Industry Talk
- 450 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 135 Just for fun
- 56 Community Job Board
- 454 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!