Formula help for At Risk Flag
I want a formula that states if Finish date is less than today and % complete is not full (harvey ball) then color the flag.
This is my formula but it is not coloring the flag for the scenario: Finish date is 4/28/20 and Harvey ball is 3/4.
=IF(AND(Finish@row < TODAY(), [% Complete]@row < 1), 1, 0)
Any guidance would be appreciated.
Thanks
Best Answers
-
Hey Tina,
If your % Complete column is set to a Symbol Type (Harvey Ball), the logical expression conditions for that are "Full", "Three-Quarter", "Half", "Quarter", and "Empty". Try this formula:
=IF(AND([Finish]@row < TODAY(), [% Complete]@row <> "Full"), 1)
-MS
-
Mark, thank you that worked.
Thank you Antonio also.
Answers
-
Formulas with symbols should use the name of the symbol.
See if this solves your issue:
=IF(AND(Finish@row < TODAY(), [% Complete]@row <> "Full"), 1, 0)
-
Hey Tina,
If your % Complete column is set to a Symbol Type (Harvey Ball), the logical expression conditions for that are "Full", "Three-Quarter", "Half", "Quarter", and "Empty". Try this formula:
=IF(AND([Finish]@row < TODAY(), [% Complete]@row <> "Full"), 1)
-MS
-
Mark, thank you that worked.
Thank you Antonio also.
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
- 495 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!