Trying to find a way to take percentage complete with checkboxes
I am trying to find a way to have a percentage completely column. I want it to calculate the amount of check boxes that are checked as complete. In the outlined cell, I want to basically calculate the following ---> Total amount of checkboxes (12) - total unmarked boxes(9)/Total amount of checkboxes (12)= % of checked boxes
Is this possible? I am new with smartsheets :/ Thanks in advance for any feedback!
Answers
-
Yes! You can use a formula to count how many Checkboxes there are across your row:
=COUNTIF([Column 1]@row:[Column 12]@row, 1)
The first thing in the COUNTIF function is the range - from the first column in your sheet (Column 1) in this row (@row) to the last column of checkboxes (Column 12) in this row (@row).
Then we look for a specific criteria, that the box is checked, or 1.
Now that we have this count, we can divide it by 12!
=COUNTIF([Column 1]@row:[Column 12]@row, 1) / 12
This will give you a decimal value that you can convert into a percent using the Percent format in the toolbar.
Here's more information: Create and Edit Formulas in Smartsheet / Create Efficient Formulas with @cell and @row / COUNTIF Function
Cheers!
Genevieve
Need more information? 👀 | Help and Learning Center
こんにちは (Konnichiwa), Hallo, Hola, Bonjour, Olá, Ciao!👋 | Global Discussions
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 205 Use Cases
- 516 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 83 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!