Jun 08, 2023 07:46 AM
Hey!
I have 3 checkbox fields that indicate the completion of a task. I want to show completion of the tasks using the newly released progress bar on the Percent tab, but without having to manually type in the thirds (1/3, 2/3, 3/3).
If I use a formula to sum up the checks as a third, then use another formula to make it into a percent, I still won't be able to get the bar since the formula field does not come with that feature. How do I get that % into the percent field without having to create an automation? Is that the only way, or is there an easier/simpler way to go about this?
Thanks in advance 🙂
Solved! Go to Solution.
Jan 14, 2024 04:30 AM
Yes, there is! This is what I used for 5 checkboxes in different fields:
SUM(
IF({Checkbox1}, 1, 0),
IF({Checkbox2}, 1, 0),
IF({Checkbox3}, 1, 0),
IF({Checkbox4}, 1, 0),
IF({Checkbox5}, 1, 0)
) / 5
Dec 09, 2024 03:10 PM
E77en this solution was the best fix for me. And the simplest. Thank you.