Flag Priority only when certain criteria are meet
Hi All,
I have a gantt chart with a priority flag column. I want it to flag the row only when the date column is past today and % Complete column is less than 100%. The formula i am using is below and it is working to flag the row if the end date is past today but it does not clear the flag when the % complete is 100.
=IF(AND([End Date]@row < TODAY(), [% Complete]@row <> "100%"), 1, 0)
Thanks for any help!
Best Answers
-
Hi @GlenM ,
Try this:
=IF(AND([End Date]@row < TODAY(), [% Complete]@row <> 1), 1, 0)
In cells formatted as %, the values are displayed as % but internally are decimals. So, for example, 50% would be 0.5, and 100% would be equal to 1.
Hope this helps. Let me know if it works!
Best,
Heather
-
Thank you very much it worked!
Answers
-
Hi @GlenM ,
Try this:
=IF(AND([End Date]@row < TODAY(), [% Complete]@row <> 1), 1, 0)
In cells formatted as %, the values are displayed as % but internally are decimals. So, for example, 50% would be 0.5, and 100% would be equal to 1.
Hope this helps. Let me know if it works!
Best,
Heather
-
Thank you very much it worked!
-
@GlenM Glad it worked! Have a great week.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.5K Get Help
- 402 Global Discussions
- 213 Industry Talk
- 450 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 135 Just for fun
- 56 Community Job Board
- 454 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!