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 help? 👀 | 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
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!