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
I need to extract and split the contents of a cell in a Smartsheet into three separate columns to a new smartsheet. The cell entries are originally submitted through a form.
Hello, Just investigating an idea. I'm building a staff register sheet. I'm curious to know if its possible to populate specific cells by the answers given in a form? So if, in a form, a staff member gives their name, the date and that they will be on leave, sick, training ect. Once the form is submitted, it will populate…
My current formula is below. I would like to update this so that I only get a total of those that have been Quoted and have a timeframe data of 2025. How do I add this extra filter into the formula? =SUMIF(Status:Status, "Quoted", [Est. GP]:[Est. GP])