Adding a tick mark (✔️) in Google Sheets can be a great way to visually track completed tasks, mark items in a checklist, or simply make your data more organized and user-friendly.
Though Google Sheets doesn’t have a direct "tick mark" button, you can easily insert checkmarks through a variety of methods, including using special characters, keyboard shortcuts, and conditional formatting.
This guide will take you through detailed steps on how to add a tick mark (checkmark) in Google Sheets, providing multiple ways to do it based on your needs.
Why Use Tick Marks in Google Sheets?
Tick marks (also called checkmarks) can be used in a variety of ways to enhance your Google Sheets:
- Task and Project Management: You can use tick marks to indicate completed tasks in to-do lists, project management sheets, or checklists.
- Status Indicators: Tick marks can signal that a certain process or step has been completed.
- Visual Data: Adding tick marks to data can make it easier to visually differentiate between completed and incomplete items.
- Survey or Form Results: In survey analysis, a tick mark can represent positive responses or confirmations.
Method 1: Using the Google Docs Special Characters Tool
The simplest way to insert a tick mark is to use Google Docs' special character tool and copy it into Google Sheets.
https://www.guidejar.com/embed/6124f840-f9b6-4a43-8377-bbc0e0874611?type=1&controls=onSteps to Insert a Tick Mark from Google Docs:
- Open Google Docs:
- Open a blank document in Google Docs.
- Insert a Special Character:
- In the top menu, go to Insert > Special characters.
- Search for the Checkmark Symbol:
- In the search bar of the special characters window, type “check mark” or “tick.” You’ll see a variety of checkmark options, including both tick (✔️) and cross (✘) symbols.
- Copy the Checkmark:
- Click on the desired checkmark symbol, and it will be inserted into the document. Highlight the symbol and press Ctrl + C (or right-click and choose Copy).
- Paste the Tick Mark into Google Sheets:
- Go to Google Sheets, click on the cell where you want the tick mark to appear, and press Ctrl + V to paste the tick mark.
Key Points:
- This method is quick and straightforward if you only need a few tick marks in specific cells.
- You can copy and paste the tick mark into multiple cells if needed.
Method 2: Using Unicode for Tick Marks
Another easy way to insert a tick mark is to use Unicode characters. Tick marks have specific Unicode values, which you can insert using the CHAR function in Google Sheets.
Steps to Insert Tick Mark Using Unicode:
- Use the CHAR Function:
- In any cell, type the following formula:
`scss
scss
Copy code
=CHAR(10003)
`
- This formula inserts the Unicode character for a tick mark (✔️). Once you press Enter, the tick mark will appear in the selected cell.
- Alternative Checkmark Unicode Values:
- You can also try different Unicode values for other styles of checkmarks:
- ✔️ Tick mark: =CHAR(10003)
- ✓ Simple tick mark: =CHAR(10004)
- Copy the Formula or Symbol:
- If you need the tick mark in multiple cells, you can copy the formula or symbol into other cells by dragging the fill handle or using Ctrl + C and Ctrl + V.
Key Points:
- This method allows you to insert tick marks in a dynamic way, and the formula can be copied into multiple cells.
- Unicode symbols are highly versatile and work across most devices and platforms.
Method 3: Using Checkboxes in Google Sheets
Google Sheets has a built-in checkbox feature that can also function as a tick mark when checked. This method is particularly useful for interactive checklists or task tracking.
Steps to Add Checkboxes in Google Sheets:
- Select the Cells for Checkboxes:
- Highlight the cells where you want to insert checkboxes. For example, if you want checkboxes in column B, select the cells in that column.
- Insert Checkboxes:
- Go to Insert > Checkbox. Google Sheets will automatically insert checkboxes into the selected cells.
- Check the Boxes:
- When you click a checkbox, it will display as "checked" with a tick mark inside the box. If unchecked, the box will be empty.
- Customize the Checkboxes:
- You can customize how the checkboxes behave. For example, you can use formulas to trigger certain actions or calculations when a checkbox is checked or unchecked. By default, a checked checkbox returns a value of TRUE, and an unchecked one returns FALSE.
Example:
You can create a simple checklist:
- Column A contains task descriptions.
- Column B contains checkboxes.
- You can create a formula that counts how many tasks have been completed:This formula counts how many checkboxes in the range B2:B10 are checked (TRUE).
`php
php
Copy code
=COUNTIF(B2:B10, TRUE)
`
Key Points:
- Checkboxes are interactive, making them ideal for tracking progress or completion of tasks.
- The TRUE/FALSE functionality allows for further integration with formulas and conditional formatting.
Method 4: Using Conditional Formatting to Display Tick Marks
If you want to automatically display a tick mark when certain conditions are met (such as when a task is marked as "Done"), you can use Conditional Formatting.
Steps to Add Tick Marks Using Conditional Formatting:
- Enter Task Status Data:
- In column A, enter task names, and in column B, enter the status of each task (e.g., "Done" or "In Progress").
- Highlight the Target Cells:
- Highlight the range in which you want the tick marks to appear. For example, you might select column C if you want the tick marks to appear there.
- Open Conditional Formatting:
- Go to Format > Conditional formatting.
- Create a Custom Formula:
- In the Conditional format rules panel, under Format cells if, select Custom formula is.
- Enter a formula that will check if the status is "Done." For example:
`arduino
arduino
Copy code
=B2="Done"
`
- This formula will trigger the conditional formatting when column B has the word "Done."
- Set the Tick Mark as the Output:
- In the Formatting style section, set the text value to be a tick mark symbol. You can copy the tick mark from another source (as discussed in Method 1 or 2), or use a checkmark emoji (✔️).
- Apply the Rule:
- Once the rule is set, any row where the status is "Done" in column B will display a tick mark in column C.
Example:
- If cell B2 says "Done," a tick mark will automatically appear in C2.
- If cell B3 says "In Progress," no tick mark will appear.
Key Points:
- This method is great for automating tick marks based on certain conditions.
- Conditional formatting allows you to display symbols dynamically as data changes.
Method 5: Inserting Tick Marks Using Emojis
Another quick and fun way to add tick marks is by using emojis. Google Sheets supports emojis, and you can easily insert them like any other text.
Steps to Add Tick Marks with Emojis:
- Open the Emoji Keyboard (Mac):
- On a Mac, press Command + Control + Space to open the emoji picker.
- Open the Emoji Keyboard (Windows):
- On Windows, press Windows + . (Windows key and period) to open the emoji picker.
- Search for a Checkmark Emoji:
- In the emoji picker, search for "check" or "tick." Select the tick mark emoji (✔️) and click to insert it into the selected cell.
- Use the Emoji in Google Sheets:
- Once the emoji is inserted, you can copy and paste it into other cells or use it as part of your data.
Key Points:
- Emojis can be used in any text field in Google Sheets, offering a quick way to add tick marks and other symbols.
- Emojis work across most platforms, but the appearance of emojis might slightly differ based on the device or operating system.
Conclusion
Adding tick marks in Google Sheets is a simple yet powerful way to track tasks, create checklists, or enhance your data visually. Here are the key methods for inserting tick marks:
- Copy-Paste from Google Docs: Ideal for manually adding a few tick marks.
- Using Unicode (CHAR Function): Useful for dynamically inserting symbols using formulas.
- Checkboxes: Great for interactive checklists with built-in functionality.
- Conditional Formatting: Best for automatically displaying tick marks based on conditions.
- Emojis: A fun and quick method to insert tick marks.
Each method has its strengths, so choose the one that best suits your needs based on the complexity of your task, the number of tick marks you need, and whether you want manual or automated insertion.
Share on socials
About the author
Ayan Ahmad is a Senior Content Strategist with hands-on experience crafting high-performing content for brands like Amazon and Okaya. He specializes in SEO-focused editorial systems, topical authority building, and user-first documentation. When he's not working, Ayan enjoys cinema and travel.
More from the blog
How to insert bitmoji into Google Slides
17 March 2026
Top 12 PowerPoint Alternatives Compared – Find the Best Presentation Tool
17 March 2026
Genetics Topics for Presentation: 100+ Comprehensive Ideas
17 March 2026
Interesting Biology Topics for Presentations: 100+ Captivating Ideas
17 March 2026
How to add morph Transition in PowerPoint
15 March 2026
How to Convert PPT to Google Slides - Complete 2026 Guide
13 March 2026
How to animate google slides
10 March 2026
50+ Funny Presentation Topic Ideas to Get You Started
5 March 2026
Scribd PPT Downloader Free: Step-by-Step Guide (Updated 2026)
2 March 2026