Formula to calculate % Complete (numeric value) from Status (not started, in progress, complete)
I want to calculate the following and have tried IF/Then formulas - but get "unparceable" every time.
not started = 0%
in progress = 50%
complete = 100%
The columns I have (Task, Phase, Milestone, Start date, End Date, Responsible, Status, % Complete, Health, Notes.
The Health column auto-calculates based on the Status value
Answers
-
You should be able to use something along the lines of...
=IF(Status@row = "Complete", 1, IF(Status@row = "In Progress", .5, 0))
Once you enter that formula, you can format the column to display a percentage.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.6K Get Help
- 433 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.9K Ideas & Feature Requests
- 143 Brandfolder
- 147 Just for fun
- 63 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 298 Events
- 36 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!