Nest-if Formula
Hi,
I am working in Smartsheet and am trying to create a nested-if formula to automate a status ball for a status column which is dependent on % complete for each request received. The goal is to great a red ball if a request is less than 70% complete and a yellow ball if the request is 70% or above and less than 100% and a green ball if the status request is 100% complete. I have tried multiple times to create the nested-if formula but keep receiving and error. Is there someone who can assist?
Answers
-
=IF(PercentComplete@row=1,"Green",IF(PercentComplete@row<=0.7,"Red","Yellow"))
This formula should be a column formula in your Status column. As long as the Column type is set up to include Red/Yellow/Green, you should be set. HOWEVER… if PctComplete@row is blank, it'll behave oddly. You can add a level to make status gray in that case:
=IF(ISBLANK(PercentComplete@row),"Gray",IF(PercentComplete@row=1,"Green",IF(PercentComplete@row<=0.7,"Red","Yellow")))
More on IF (including an example of a nested IF statement):
Good luck!
If this answer resolves your question, please help the Community by marking it as an accepted answer. I'd also be grateful for your response - "Insightful"or "Awesome" reactions are much appreciated. Thanks!
-
Thank you !
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.9K Get Help
- 429 Global Discussions
- 147 Industry Talk
- 487 Announcements
- 5.2K Ideas & Feature Requests
- 86 Brandfolder
- 151 Just for fun
- 74 Community Job Board
- 497 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 305 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!