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
- 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!