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 Guide Prashanth KV brings a wealth of experience in Google Sheets and Excel, cultivated through years of work with multinational corporations in Mumbai and Dubai. As a recognized Google Product Expert in Docs Editors, Prashanth shares his expertise through insightful blogging since 2012. Explore his blog for practical tips and guidance on maximizing your spreadsheet skills.

Lookup Values Under Categories in Excel and Google Sheets

We can use a combination of XLOOKUP and VLOOKUP in both Excel and Google...

Extract Items Under a Category from the Same Column in Excel

In Excel, you can use a combination of the XLOOKUP and DROP functions to...

How to Create a Searchable Table in Excel Using the FILTER Function

Finding specific records, or rows containing the required information, is straightforward in Excel using...

Time Sequences in Excel by Minute, Hour, or Second Increments

Creating time sequences, whether by hour, minute, or second increments in Excel, can be...

More like this

XMATCH Row by Row: Finding Values Across a Range in Google Sheets

Using the BYROW function with XMATCH in Google Sheets allows us to match values...

Limit Formula Expansion to a Specific Row in Google Sheets

In this tutorial, I’ll explain how to limit the expansion of an array formula...

3-D Referencing Structured Data Tables in Google Sheets

When you have several tables within a single sheet—not across multiple sheets in a...

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.