Forum Discussion
Using checkboxes to create percentage bar
- Feb 16, 2024
Including the values on the worksheet to give an alternating pattern is a step backward because it makes any calculation harder. The formula I would use is
= BYROW(status * {60,20,10,10,10}%, LAMBDA(x, SUM(x)))which spills to return the entire column of overall percentages.
[Look out for the new checkboxes when the come available; they are much better to set up and use]
Is this the sort of thing you require?
This is just a conditional format, but maybe you have some other strategy for your progress bar?
My checkboxes simply return TRUE or FALSE but the percentage is calculated in the formatted cell using
= SUM(checkMarks * {60;20;10;10}%)PeterBartholomew1 Thanks.
I've attached a copy of what it is that I'm working with as we literally have hundred of rows for some projects and as such struggled to implement your suggestion, unless I'm missing something? I've now added the percentages in the cells adjacent for my reference and also to possibly assist with a formula?