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!
-
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 205 Use Cases
- 517 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 83 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!