Fill in a cell based on another cell's value?
Hello,
I'm tracking participation of a program on my sheet as a "participation %" column. There is another column called "participation status" to make it easy for the managers to know if their employee is on track with participation or not.
I'm trying to set up the participation status column so that if the participation % is a certain value or range it'll say the status.
EX:
Participation % = 0 | Participation Status = Not Participating
Participation % = >0,<80 | Participation Status = Needs Improvement
Participation % = >80 | Participation Status = On Track
I've tried searching for the answer all day and have officially given up so I'm hoping someone is able to help or advise if this is not possible. 😅
Best Answer
-
The formula below will get what you need. With Smartsheet, you have to convert % to decimal values in formulas.
=IF([Participation %]@row = 0, "Not Participating", IF([Participation %]@row > 0.8, "On Track", IF(AND([Participation %]@row < 0.81, [Participation %]@row > 0), "Needs Improvement", "Blank")))
Answers
-
The formula below will get what you need. With Smartsheet, you have to convert % to decimal values in formulas.
=IF([Participation %]@row = 0, "Not Participating", IF([Participation %]@row > 0.8, "On Track", IF(AND([Participation %]@row < 0.81, [Participation %]@row > 0), "Needs Improvement", "Blank")))
-
THANK YOU SO MUCH!!!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.7K Get Help
- 405 Global Discussions
- 216 Industry Talk
- 456 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 297 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!