Colored Dots Formula
I'm trying to use a formula to populate a column with colored dots based off of a date.
This is what I'm trying to do
Red - Date prior to TODAY
Yellow - Date within the next 90 days from TODAY
Green - Date greater than 90 days from TODAY
Gray - Date is blank
I keep getting the unparseable error.
This is my formula:
IF([Contract Expiration Date]@row < TODAY(0), "Red", IF([Contract Expiration Date]@row < TODAY(90), "Yellow", IF([Contract Expiration Date]@row ISDATE, "Gray", "Green")))
Answers
-
Your ISDATE() syntax is a little off. I also reordered your conditions a little to avoid an error if something other than a date is entered.
=IF(ISDATE([Contract Expiration Date]@row), IF([Contract Expiration Date]@row < TODAY(0), "Red", IF([Contract Expiration Date]@row < TODAY(90), "Yellow", "Green")), "Gray")
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.5K Get Help
- 424 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 145 Just for fun
- 63 Community Job Board
- 465 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!