How to I calculate percentage progress based on status?
Hello Smartsheet Community,
I appreciate your support on calculating "% of complete" based on "Status" value. I have some predefined values for "Status" column and need to connect the "Status" to "% of Complete". For example:
When Status="Backlog" --> % Complete=0%
When Status="In Evaluation" --> % Complete = 25%
When Status="In Draft" --> % Complete=50%
When Status="In Approval" --> % Complete= 75%
When Staus= "Completed" --> % Complete=100%
Appreciate your help on formula for the "% Complete" column.
Thank you!
Answers
-
Hi @Fei Teng,
You could try using the formula below, you may need to tweak the column names, but see how you get on.
IF([Status]@row="Completed",1,IF([Status]@row="In Approval",0.75,IF([Status]@row="In Draft",0.5,IF([Status]@row="In Evaluation",0.25,0))))
John
-
Hi @Fei Teng,
This should get you started on the formula:
=IF(Status@row = "Backlog", 0, IF(Status@row = "In Evaluation", 0.25))
You can add the rest of the elements (In Draft, In Approval, Completed) by adding additional IF clauses to complete the formula.
Let me know if that works for you! Have a great day.
Thanks,
Sing
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.2K Get Help
- 359 Global Discussions
- 198 Industry Talk
- 427 Announcements
- 4.4K Ideas & Feature Requests
- 136 Brandfolder
- 127 Just for fun
- 128 Community Job Board
- 444 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!