Need assistance with formula
I have this formula on a column =IF(Status@row = "Complete", "100%", ="In Progress", " %"), I want the user to be able to add in a number when the status@row is "in Progress". How can I write the formula to be able to allow the user to type in a progress level.
"In progress" may be 75% or 50%
Best Answer
-
Hi, @TinaM , you'll need a text/number column to store the user's reported progress level--something like Reported Progress Level. Your formula will be:
=IF(Status@row = "Complete", "100%", [Reported Progress Level]@row + "%")
This assumes that the status is either "Complete" or "In Progress".
If there are other possible statuses (e.g., "Pending Assignment", "Parking Lot", etc), then the formula will need specify when status = "In Progress":
=IF(Status@row = "Complete", "100%", IF(Status@row = "In Progress", [Reported Progress Level]@row + "%", ""))
Answers
-
Hi, @TinaM , you'll need a text/number column to store the user's reported progress level--something like Reported Progress Level. Your formula will be:
=IF(Status@row = "Complete", "100%", [Reported Progress Level]@row + "%")
This assumes that the status is either "Complete" or "In Progress".
If there are other possible statuses (e.g., "Pending Assignment", "Parking Lot", etc), then the formula will need specify when status = "In Progress":
=IF(Status@row = "Complete", "100%", IF(Status@row = "In Progress", [Reported Progress Level]@row + "%", ""))
-
Thank you - This will work. I appreciate the assistance!
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!