Using Symbols to represent a numerical value like percentage
I am trying to create some visual queues on my smartsheet. I have a % Complete column that essentially shows how far along we are between the start and due date. I'd like to represent these percentages with symbols to provide visual queues about our progress. In this case, I am trying to use the little smiley/frowny face symbols. I modified a formula I found and can't figure out why I can't get it to work. I'm guessing it's either a silly syntax thing or I've taken the wrong approach to my problem. Any ideas?
=IF([% Complete]@row = 0, "No Pain", ([% Complete]@row < 0.25, "Mild", IF([% Complete]@row < 0.5, "Moderate", IF([% Complete]@row < 0.75, "Severe", IF([% Complete]@row < 1, "Very Severe", IF([% Complete]@row = 1, "Extreme"))))))
Answers
-
Hi @Will Mellinger ,
Try this:
=IF([% Complete]@row = 0, "No Pain", IF([% Complete]@row < 0.25, "Mild", IF([% Complete]@row < 0.5, "Moderate", IF([% Complete]@row < 0.75, "Severe", IF([% Complete]@row < 1, "Very Severe", IF([% Complete]@row = 1, "Extreme"))))))
Does you percent complete check to see if the project is complete?
Mark
I'm grateful for your "Vote Up" or "Insightful". Thank you for contributing to the Community.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 85 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!