Sign in to join the conversation:
Please , is there a way to count how many starts from a checkbox I have (per cell)?
Hi Guilherme,
Try this.
=IF(Stars@row = "Empty"; 0; IF(Stars@row = "One"; 1; IF(Stars@row = "Two"; 2; IF(Stars@row = "Three"; 3; IF(Stars@row = "Four"; 4; IF(Stars@row = "Five"; 5))))))
The same version but with the below changes for your and others convenience.
=IF(Stars@row = "Empty", 0, IF(Stars@row = "One", 1, IF(Stars@row = "Two", 2, IF(Stars@row = "Three", 3, IF(Stars@row = "Four", 4, IF(Stars@row = "Five", 5))))))
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Have a fantastic week!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
Thats a lot Andrée! Make my day happier!
Happy to help and make you happier!
Have a fantastic weekend!
Andrée
This discussion was created from comments split from: I am an editor on a smartsheet but can't edit the sheet.
Good afternoon! My company works closely with another ambulance service, Company B. Both companies have a Smartsheet Enterprise plan. I have created a workspace that I need members of Company B to edit. Do I need to make them members on my account if they are already members on their account? Or do I just need to add their…
I'm trying to create a graph chart that captures monthly count of records by divisions (Northeast, West and Central) that should be stacked with a legend displaying each by different color like a presented in Excel. When I attempt to duplicate the process in Smartsheet I receive the following results. In Excel, I created…