Formula for % complete is missing a rule
I have this formula which is working. However what it is not doing is picking up a Not started task sitting at 0% that it is overdue.
It only marks it as overdue once I move the task to an in- progress state.
=IF([Percent Complete]@row = 1, "Complete", IF([Percent Complete]@row = 0, "Not Started", IF(AND([Percent Complete]@row < 1, [End Date]@row <= TODAY()), "Overdue", IF([Percent Complete]@row > 0.01, "In Progress"))))
Answers
-
If you reorder your formula it will pick that up, your formula was reading the 0 and ending the formula at 'not started' hopefully now it will recognise overdue instances before those not started.
=IF([Percent Complete]@row = 1, "Complete", IF(AND([Percent Complete]@row < 1, [End Date]@row <= TODAY()), "Overdue", IF([Percent Complete]@row = 0, "Not Started", , IF([Percent Complete]@row > 0.01, "In Progress"))))
Hope that helps
Paul McGuiness
Central Operations Manager at Care UK -
Amazing I just removed the duplicate ,, before the last IF and it is working.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 143 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!