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
- Customer Resources
- 65.3K Get Help
- 446 Global Discussions
- 144 Industry Talk
- 478 Announcements
- 5K Ideas & Feature Requests
- 85 Brandfolder
- 151 Just for fun
- 72 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 302 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!