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
I have 3 columns in one row and I'm trying to show the average of the percentage of work done from those three columns. I've attached a screen shot. In one example, 25% is done from one column and 0% is done from the other two columns. The sum/average shows 54% complete In the next example I actually made all 3 columns…
I have two sheets, one is titled "Test Scenarios", it's a sheet that contains steps to complete a test scenario, the other is titled "Test Issues", it collects testing issues submitted via form URL. When a test scenario fails, the user selects "failed" from a multi select box which causes a form URL to display. The URL…
I am working on a large update to a project that has 130 toolkits generated through a blueprint. I have to add up to 20 new columns that all would be a column formula containing cross sheet references to another sheet within the toolkits. My question is, if I do this using a global update, would all of the sheets be cross…