Formula for If Date is Blank or Not Blank, set Status symbol to Red/Green
Hi everyone!!
I am struggling with finding the correct formula to indicate status of task (shown by symbols) based on if a date is submitted into another cell.
In words, I'd like to have the formula be set to make the status symbol "Green" if Column "Date" is not blank. I would also like the formula to make the status symbol "Red" if Column "Date" is blank.
Can anyone assist me? Hopefully I'm explaining that well enough!
Thank you!
Best Answer
-
Try this:
=IF(Date@row <> "", "Green", "Red")
Answers
-
Try this:
=IF(Date@row <> "", "Green", "Red")
-
Thank you so much, Paul!!
-
Happy to help. 👍️
-
Hi all!
I'm curious how to invert and add onto this formula to set a status symbol via:
If the [Date Verified]@row is blank AND if the [Assessment Status]@row = "Completed Assessment" then [column where formula exists]@row, "Red" / otherwise marked green (when the assessment status = completed assessment & date exists). I've tried a variety of combinations and the closest I get is when a cell should be red, it is blank while all others accurately display a green status. Any advice is greatly appreciated! Thank you!
-
@laurensevere You would use a standard IF/AND like so:
=IF(AND([Date Verified]@row = "", [Assessment Status]@row = "Completed Assessment"), "Red", "Green")
If you need it to be the opposite where it is green when the status is completed and the date is not blank and red for all others, you would still use an IF/AND combo.
=IF(AND([Date Verified]@row <> "", [Assessment Status]@row = "Completed Assessment"), "Green", "Red")
-
Thank you @Paul Newcome !
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
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!