Help with adjusting a formula
So the formula below is used to determine the colors of the dots. However, I need it modified so that for Blue Dots, they will be Blue based on the current condition already there, or if the start date or finish date are empty. I was unable to figure this out on my own so thought I would post it here
=IF(OR(Status@row = "Complete", [% Complete]@row = 1), "Green", IF(Finish@row <= TODAY(), "Red", IF(Finish@row > TODAY(7), "Blue", IF(Finish@row >= TODAY(), "Yellow"))))
Best Answer
-
Lets try some rearranging then...
=IF(OR(Status@row = "Complete", [% Complete]@row = 1), "Green", IF(OR(Finish@row > TODAY(7), Finish@row = "", Start@row = ""), "Blue", IF(Finish@row <= TODAY(), "Red", IF(Finish@row >= TODAY(), "Yellow"))))
Answers
-
Give this a go...
=IF(OR(Status@row = "Complete", [% Complete]@row = 1), "Green", IF(Finish@row <= TODAY(), "Red", IF(OR(Finish@row > TODAY(7), Finish@row = "", Start@row = ""), "Blue", IF(Finish@row >= TODAY(), "Yellow"))))
-
Just tried this and the blank ones stayed Red
-
Lets try some rearranging then...
=IF(OR(Status@row = "Complete", [% Complete]@row = 1), "Green", IF(OR(Finish@row > TODAY(7), Finish@row = "", Start@row = ""), "Blue", IF(Finish@row <= TODAY(), "Red", IF(Finish@row >= TODAY(), "Yellow"))))
-
That worked! Thanks so much!
-
Great! 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
- 142 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!