Sign in to join the conversation:
I am trying to created check point progress with check boxes and a visual aid. I created a If formula, but my progress is not adding up. I would like to know if anyone can help me with a better formula.
=IF([Classes Complete l]2 = 1, "Quarter", IF([Classes Complete ll]2 = 1, "Three Quarter", IF([Classes Complete lll]2 = 1, "Full")))
This is the formula. I am using, but its not working.
Hi,
Try something like this.
Starting with the last one first because the formula will stop when something is true.
=IF([Classes Complete III]@row = 1; "Full"; IF([Classes Complete II]@row = 1; "Three Quarter"; IF([Classes Complete I]@row = 1; "Quarter")))
The same version but with the below changes for your and others convenience.
=IF([Classes Complete III]@row = 1, "Full", IF([Classes Complete II]@row = 1, "Three Quarter", IF([Classes Complete I]@row = 1, "Quarter")))
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
Hope that helps!
Have a fantastic weekend!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
Hi there, I've created a sheet to where my team is tracking information received. In one column, we are logging the date and time information came in (ie: November 21, 2025 8:30 AM). I would like to add a checkbox column, with a formula specifying that the box be checked if the logged time is AFTER 8:30 AM, and left…
I have a list of properties that I'm keeping track of. I have each building divided into suites (children) and each suite has a cell with its square footage. The total square footage rolls up to the building name. I also have a drop down column that shows if the suite is occupied or vacant. I need a to calculate the…
Hi! I'm fairly new to SmartSheets but have been trying a number of things that havent yet worked. I want to be able to show for each parent row, the number of child rows completed as a %. So for the parent row Process Overview there are 7 tasks and 6 tasks are complete so I want it to show as 90%. Can anyone help me?