How to Count Checked and Unchecked Boxes in Google Sheets (Khmer)
Learn how to count checked and unchecked boxes, calculate percentage %, and build progress bars in Google Sheets step by step with Khmer video guide.
Hello everyone! Today I show you how to count checked and unchecked boxes and calculate completion percentage in Google Sheets step by step with easy formulas and video guide in Khmer language.
When you use checkboxes for task lists or project tracking, counting checked vs unchecked items helps you know exact progress instantly!
How Google Sheets Checkboxes Work
In Google Sheets:
- Checked box has value =
TRUE - Unchecked box has value =
FALSE
Method 1: Count Checked Boxes Only
To count how many tasks are completed (checked):
Use COUNTIF formula with TRUE:
=COUNTIF(A2:A10, TRUE)
- Result: Returns total number of checked boxes (e.g.
7).
Method 2: Count Unchecked Boxes Only
To count how many tasks are still remaining (unchecked):
Use COUNTIF formula with FALSE:
=COUNTIF(A2:A10, FALSE)
- Result: Returns total number of unchecked boxes (e.g.
3).
Method 3: Calculate Completion Percentage (%)
To see completion progress percentage (e.g. 70%):
Divide checked count by total count:
=COUNTIF(A2:A10, TRUE) / COUNTA(A2:A10)
- Click Format ➔ Number ➔ Percent (%) (or click
%button on toolbar). - Result: Displays
70%progress!
Method 4: Show Dynamic Status Message with IF
You can show dynamic message like 7 of 10 Completed or All Finished 🎉:
=IF(COUNTIF(A2:A10, FALSE) = 0, "All Finished 🎉", COUNTIF(A2:A10, TRUE) & " of " & COUNTA(A2:A10) & " Completed")
📹 Watch Khmer Video Tutorial
Watch video step by step below to see how to count checked and unchecked boxes in Google Sheets:
💡 Quick Tip:
- Build Visual Sparkline Progress Bar: You can create a mini visual green progress bar in 1 cell! Use this formula:
=SPARKLINE(COUNTIF(A2:A10, TRUE), {"charttype", "bar"; "max", COUNTA(A2:A10); "color1", "#107C41"})- Don't Put Quotes Around TRUE/FALSE: In
=COUNTIF(A2:A10, TRUE), writeTRUEdirectly without quotes. If you write"TRUE", Google Sheets treats it as text string instead of boolean checkbox state!- Count Checkboxes in Multiple Columns: To count checkboxes across columns A to D, write:
=COUNTIF(A2:D10, TRUE).
📚 Related Resources
Related Tutorials
Opens in new tab ↗How to Highlight Rows Automatically Based on Checkbox in Google Sheets (Khmer)
Learn how to insert checkboxes and automatically highlight entire rows in Google Sheets using Conditional Formatting custom formula with Khmer video guide.
Google Sheets Tutorial in Khmer: Guide & Best Tips
Google Sheets with our Khmer tutorials collection covering dynamic dropdowns, checkbox row highlighting, text splitting, space cleanup, shortcuts, and date pickers.
How to Clean Extra Spaces in Google Sheets (4 Easy Methods) (Khmer)
Learn 4 easy methods to remove extra spaces, leading spaces, and hidden characters in Google Sheets using Trim whitespace tool, TRIM, REGEXREPLACE, and CLEAN.