This is a step-by-step tutorial and idea guide for using the new native Excel checkboxes, highlighting their ease of use, setup, integration with formulas, and advanced features such as conditional formatting and automatic timestamps.
Inserting Checkboxes
Bulk Insertion
COUNTIF(range, TRUE)
to count checked (TRUE) boxes.COUNTA(range)
to count total items (including text, numbers, and TRUE/FALSE).&
(Ampersand), and add a line break with CHAR(10)
.=cell_reference
to show the progress inside the shape.=FILTER([Items], [Checkboxes]=FALSE, "")
Use the IFS function to set a timestamp when a box is checked:
NOW()
.Example formula:
=IFS(
[CheckboxCell]=FALSE, "",
[TimestampCell]="", NOW(),
TRUE, [TimestampCell]
)
Tip: Share your use cases and subscribe for more tutorials!