Inserting Check Marks and Tick Boxes in Google Sheets

To insert check marks and cross marks, we can use characters, while for tick boxes, we can use data validation in Google Sheets.

We can use check marks and tick boxes to mark completed tasks, verified records, etc.

While tick boxes are interactive, check marks are not; they are simple characters. To use the latter effectively in your data, you might want to apply logical tests.

How to Insert Tick Boxes in Google Sheets

Currently, you can insert tick boxes in a selected range in three ways: via the Insert menu, data validation, or by choosing the column type in a table.

The tick box value when ticked is TRUE and unticked is FALSE, regardless of the option that you choose to insert it. Furthermore, if you insert the tick boxes via the Insert menu or the table column type feature, you can customize them using data validation.

Inserting tick boxes in Google Sheets

Option 1: Via Insert Menu

The easiest method to insert a tick box is using the Insert menu. If you want it in cell B2, navigate to cell B2 and click on the Insert menu, then select Tick Box. If you want it in a cell range, select the cell range and follow the same steps.

Option 2: Via Data Validation

Another option is through data validation. Knowing how to insert tick boxes via data validation is essential as it offers some customization.

To do this, navigate to the cell or select the cell range where you want to insert the tick boxes.

  1. Click on Data > Data validation.
  2. Within the Data Validation rule sidebar panel, click Add Rule.
  3. Under “Criteria”, select Tick Box.

Additional Data Validation Settings for Tick Boxes:

The default values in the tick boxes are TRUE (ticked) and FALSE (unticked). You can customize this by clicking the “Use custom values” checkbox within the sidebar panel.

For example, you can replace TRUE with 1 (ticked value) and FALSE with 0 (unticked value). This can help you when you face issues using the default TRUE or FALSE values in formulas due to language settings.

Data validation for tick box customization

If you click “Advanced options,” you will see options to set warnings when somebody overwrites the tick boxes with other values. This is similar to other data validation rules.

Option 3: Via Table Column Type

Let me explain this step-by-step by creating an empty table in Google Sheets.

  1. In an empty sheet, select A1:B6.
  2. Click Format > Convert to Table. This will insert a blank table. Assume you want the tick boxes in column B.
  3. Click the drop-down in column 2 and select Edit column type > Tick box. This will insert tick boxes in the range B2:B6.
Inserting Tick Box Using Table Column Type

Activating the Inserted Tick Boxes

You can activate the tick boxes in two ways: by clicking the tick box or by tapping the space bar.

How to Insert Check Marks in Google Sheets

Check marks are characters. You can add them to the required cell in two ways.

By entering the following formulas:

  • To insert a check mark in a cell: =CHAR(10004)
  • To insert a cross mark in a cell: =CHAR(10006)

Or you can copy-paste from here:

  • Check Mark: ✔
  • Cross Mark: ✖

Example of Using Check Marks and Cross Marks in Logical Tests

Since check marks and cross marks are not interactive, the best way to use them is in logical tests.

In the example below, we have a few student names in column A and their marks in column B.

Check and Cross Marks in a Logical Test

In cell C2, we can use the following formula to return a check mark if the student has scored greater than or equal to 50, or a cross mark:

=IF(B2>=50, "✔", "✖")

Then drag the formula down.

Resources

Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Expert Prashanth KV is a Diamond Product Expert in Google Sheets, officially recognized by Google for his contributions to the Docs Editors Help Community and featured in the Google Product Experts Directory. Explore his blog to learn advanced formulas, automation tips, and problem-solving techniques to elevate your spreadsheet skills.

Calculate Trip Days by Month (Start, End, and Full Days) in Google Sheets

If you're managing business travel in Google Sheets, you may need to calculate how...

Mode of Comma-Separated Numbers in Excel (Dynamic Array)

There is no dedicated function in Excel to directly find the mode of comma-separated...

How to Find Mode of Comma-Separated Numbers in Google Sheets

Working with comma-separated numbers inside a single cell is a common scenario in Google...

How to Count Merged Cells in Google Sheets (and Get Their Size)

Sometimes, you may have blocks of merged cells in a column or row. But...

More like this

Calculate Trip Days by Month (Start, End, and Full Days) in Google Sheets

If you're managing business travel in Google Sheets, you may need to calculate how...

How to Find Mode of Comma-Separated Numbers in Google Sheets

Working with comma-separated numbers inside a single cell is a common scenario in Google...

How to Count Merged Cells in Google Sheets (and Get Their Size)

Sometimes, you may have blocks of merged cells in a column or row. But...

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.