Automating RYG Status Balls Based Off Two Date Columns
I have two columns "Actual Start Date" and "Actual End Date", I want to have a formula for the status column using the RYG Status balls that will:
- Red when nothing is in either of the two cells
- Yellow when there is a date in the "Actual Start Date" Column
- Green when a date has been entered into both
Please help
Comments
-
Hello,
You'll want to create a nested IF statement, for example:
=IF(AND(ISDATE([Actual Start Date]1), ISDATE([Actual End Date]1)), "Green", IF(AND(ISDATE([Actual Start Date]1), ISBLANK([Actual End Date]1)), "Yellow", IF(AND(ISBLANK([Actual Start Date]1), ISBLANK([Actual End Date]1)), "Red")))
The above formula will set the RYG to green if there's a date in both cells, yellow if there's a date in Actual Start Date AND the Actual End Date is blank, red if both are blank.
More information on the IF statement can be found in the help center: https://help.smartsheet.com/function/if
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
- 143 Just for fun
- 58 Community Job Board
- 463 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!