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.
Hello everyone! Today I show you how to insert checkboxes and automatically highlight entire rows in Google Sheets step by step with video tutorial in Khmer language.
If you track daily tasks, project status, or inventory list in Google Sheets, this trick will automatically change row color and strike through completed tasks whenever you click checkbox!
Step 1: Insert Checkbox in Google Sheets
- Select cells where you want checkboxes (e.g. column
A2:A10). - Click Insert menu on top bar.
- Click Checkbox.
Now your cells have interactive checkboxes! When unchecked, cell value is FALSE. When checked, cell value turns TRUE.
Step 2: Highlight Entire Row Using Conditional Formatting
To make the whole row change color when checkbox is checked:
Step by Step:
- Select your entire table range (e.g.
A2:E10or$A$2:$E$10). - Click Format menu ➔ select Conditional formatting.
- Under Format rules ➔ click dropdown Format cells if... ➔ select Custom formula is.
- Type this exact formula (assuming checkboxes are in Column
A):
(Or simply=$A2=TRUE=$A2) - Under Formatting style, choose fill background color (e.g. light green or light grey) and check Strikethrough text button.
- Click Done.
Now whenever you check box in Column A, the entire row turns green instantly!
Step 3: Filter Checked Tasks to Separate List (Bonus Formula)
If you want to pull only checked/completed tasks into another table or sheet:
Option A: Use FILTER Formula
=FILTER(B2:E10, A2:A10 = TRUE)
Option B: Use QUERY Formula
=QUERY(A2:E10, "SELECT B, C, D, E WHERE A = TRUE", 1)
📹 Watch Khmer Video Tutorial
Watch video step by step below to see how to highlight rows automatically with checkbox in Google Sheets:
💡 Quick Tip:
- The Magic Dollar Sign (
$): Remember to write=$A2=TRUEwith dollar sign before column letterA! If you forget dollar sign (=A2=TRUE), Google Sheets will only highlight single checkbox cell, not whole row!- Uncheck All Checkboxes Fast: Select checkbox column range ➔ press
Spacebarkey (or pressDeletekey) to uncheck all checkboxes in 1 second!- Count Checked Tasks: Use
=COUNTIF(A2:A10, TRUE)to calculate total completed items automatically!
📚 Related Resources
Related Tutorials
Opens in new tab ↗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.
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.