Filter by Categories
Select all
Budget
Business Statements
Calendars
Federal Income Tax
Gantt Chart
GST India
Health, Logs and Personal Trackers
Inventory
Investments
Invoice/ Bill
Maintenance
Payroll & HR
Project Reports & Timelines
Purchase Order/Requisition
Quotation
Rental Ledger
Risk Registers
Sales/ Marketing
SWOT Analysis
Timesheet/ Attendance
UAE VAT
UK VAT
Filter by File Types






Eight Ways to insert Check Mark Symbol [Tickmark] in Excel

Eight methods to insert check mark in Excel tutorial feature image

In Excel, a checkmark is a character of wingding font. So, whenever you insert it in a cell that cell needs to have a wingding font style (Except, if you copy it from anywhere else). These methods can be used in all the Excel versions (2007, 2010, 2013, 2016, 2019, and Office 365).

When You should be using a Check Mark in Excel ?

A checkmark or tick is a mark that can be used to indicate the “YES”, to mention “Done” or “Complete”. So, if you are using a to-do list, want to mark something is done, complete, or checked then the best way to use a checkmark.

Keyboard Shortcut to Add a Checkmark

Nothing is faster than a keyboard shortcut, and to add a checkmark symbol all you need a keyboard shortcut. The only thing you need to take care of: the cell where you want to add the symbol must have wingding as font style. And below is the simple shortcut you can use insert a checkmark in a cell.

insert check mark in excel with shortcut key

  1. If you are using Windows, then: Select the cell where you want to add it.
  2. Use Alt + 0 2 5 2 (make sure to hold the Alt key and then type “0252” with your numeric keypad).windows-keyboard-shortcut-to-insert-a-checkmark-in-excel
  3. And, if you are using a Mac: Just select the cell where you want to add it.
  4. Use Option Key + 0 2 5 2 (make sure to hold the key and then type “0252” with your numeric keypad).mac-keyboard-shortcut-to-insert-a-checkmark-in-excel

Copy Paste a Checkmark Symbol in a Cell

If you usually don’t use a checkmark then you can copy-paste it from somewhere and insert it in a cell. In fact, it’s a big-time saver as well. Because you are not using any formula, shortcut, or VBA here (copy paste a checkmark from here ✓). Or you can also copy it by searching it on google. The best thing about the copy-paste method is there is no need to change the font style.

Insert a Check Mark Directly from Symbols Options

There are a lot of symbols in Excel which you can insert from the Symbols option, and the checkmark is one of them. From Symbols, inserting a symbol in a cell is a brainer, you just need to follow the below steps:

  • First, you need to select the cell where you want to add it.
  • After that, go to Insert Tab ➜ Symbols ➜ Symbol.

insert-check-mark-in-excel-from-symbol-min

  • Once you click on the symbol button, you will get a window.
  • Now from this window, select “Winding” from the font dropdown.
  • And in the character code box, enter “252”.
  • By doing this, it will instantly select the checkmark symbol and you don’t need to locate it.insert-check-mark-in-excel-from-select-symbol-min
  • In the end, click on “Insert” and close the window.

As this is a “Winding” font, and the moment you insert it in a cell Excel changes the cell font style to “Winding”.

Apart from a simple tick mark, there is also a boxed checkmark is there (254) which you can use. If you want to insert a tick mark symbol in a cell where you already have text, then you need to edit that cell (use F2). The above method is a bit long, but you don’t have to use any formula or a shortcut key and once you add it into a cell you can copy-paste it.

Create an AUTOCORRECT to Convent it to a Check Mark

After the keyboard shortcut, the fast way is to add a checkmark/tick mark symbol in the cell, it’s by creating AUTOCORRECT. In Excel, there is an option that corrects misspelled words. So, when you insert “clear” it converts it into “Clear” and that’s the right word.

Now thing is, it gives you the option to create an AUTOCORRECT for a word and you define a word for which you want Excel to convert it into a checkmark.

Below are the steps you need to use:

  • First, go to the File Tab and open the Excel options.
    open-options-from-file-tab-to-add-checkmark-in-excel
  • After that, navigate to “Proofing” and open the “AutoCorrect” Option.
    open-autocorrect-option-to-create-checkmark-in-a-cell
  • Now in this dialog box, in the “Replace” box, enter the word you want to type for which Excel will return a checkmark symbol (here I’m using CMRK).
  • Then, in the “With:” enter the checkmark which you can copy from here.
    add-a-replacement-in-autocorrect-option-insert-a-checkmark-in-excel
  • In the end, click OK.

From now, every time when you enter CHMRK Excel will convert it into an actual check mark.

 

There are a few things you need to take care which you this auto corrected check mark.

  • When you create an auto-correct you need to remember that it’s case-sensitive. So, the best way can be to create two different auto corrects using the same word.
  • The word you have specified to be corrected as a checkmark will only get converted if you enter it as a separate word. Let’s say if you enter Task1CHMRK it will not get converted as Task1. So, the text must be Task1 CHMRK.
  • The AUTO correct option applied to all the Office Apps. So, when you create a autocorrect for a checkmark you can use it in other apps as well.

Macro to Insert a Checkmark in a Cell

If you want to save your efforts and time, then you can use a VBA code to insert a checkmark. Here is the code:

Sub addCheckMark()
Dim rng As Range
For Each rng In Selection
With rng
.Font.Name = "Wingdings"
.Value = "ü"
End With
Next rng
End Sub

…here’s how this code works

When you select a cell or a range of cell and run this code it loops through each of the cells and changes its font style to “Wingdings” and enter value “ü” in it.

Add Macro Code to QAT

This is a PRO tip that you can use if you are likely to use this code more often in your work. Follow these simple steps for this:

  1. First, click on the down arrow on the “Quick Access Toolbar” and open the “More Commands”.
  2. Now, from the “Choose Commands From” select the “Macros” and click on the “Add>>” to add this macro code to the QAT.
  3. In the end, click OK.

Double-Click Method using VBA

Let’s say you have a to-do list where you want to insert a checkmark just by double-clicking on the cell. Well, you can make this happen by using VBA’s double-click event. Here I’m using the same code below code:

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Target.Column = 2 Then
Cancel = True
Target.Font.Name = "Wingdings"
If Target.Value = "" Then
Target.Value = "ü"
Else
Target.Value = ""
End If
End If
End Sub

…how to use this code

  • First, you need to open the VBA code window of the worksheet and for this right-click on the worksheet tab and select the view code.
    open-code-window-to-add-code-in-the-worksheet-to-add-checkmark-in-a-cell-by-double-click
  • After that, paste this code there and close the VB editor.
  • Now, come back to the worksheet and double click on any cell in column B to insert a checkmark.

…how this code works

When you double click on any cell this code triggers and check if the cell you on which you have double clicked is in column 2 or not…

And, if that cell is from column 2 change its font style to “Winding” after that it checks if that cell is blank or not, if the cell is blank then enter the value “ü” in it which converts into a checkmark as it has already applied the font style to the cell.

And if a cell has a checkmark already then you remove it by double-clicking.

How to add Green Check Mark with Conditional Formatting in Excel ?

If you want to be more awesome and creative, you can use conditional formatting for a checkmark. Let’s say, below is the list of the tasks you have where you have a task in the one column and a second where you want to insert a tick mark if the task is completed.

Below are the steps you need to follow:

  • First, select the target cell or range of cells where you want to apply the conditional formatting.
  • After that go to Home Tab ➜ Styles ➜ Conditional Formatting ➜ Icon Sets ➜ More Rules.
  • Now in the rule window, do the following things:
    insert-check-mark-in-excel-conditional-formatting-min
  • Select the green checkmark style from the icon set.
  • Tick mark the “Show icon only” option.
  • Enter “1” as a value for the green checkmark and select a number from the type.
  • In the end, click OK.

Once you do that, enter 1 in the cell where you need to enter a checkmark, and because of conditional formatting, you will get a green checkmark there without the actual cell value.

If you want to apply this formatting from one cell or range to another range you can do it by using format painter.

How to create a Dropdown to Insert a Checkmark in Excel ?

If you don’t want to copy-paste checkmark and don’t even want to add the formula, then the better way can be to create a drop-down list using data validation and insert a checkmark using that drop-down.

Before you start make sure to copy a checkmark ✓ symbol before you start and then select the cell where you want to create this dropdown. And after that follow these simple steps to create a drop-down for adding a checkmark:

  • First, go to Data tab ➨ Data Tools ➨ Data Validation ➨ Data Validation.
    open-the-data-validation-dialog-box-to-create-a-drop-down-for-inserting-a-checkmark
  • Now from the dialog box, select the “List” in the drop down.
  • After that, paste the copied check mark in the “Source”.
    select-list-and-paste-the-checkmark-symbol
  • In the end, click OK.
    insert-a-check-mark-with-a-drop-down

If you want to add a cross symbol ✖ along with the tick mark so that you can use any of them when you need simply add a cross symbol using a comma and click OK.

There’s one more benefit that drops down gives that you can disallow any other value in the cell other than a checkmark and a cross mark.

All you need to do is go to the “Error Alert” tab and tick mark “Show error alert after invalid data is entered” after that select the type, title, and a message to show when a different value is entered.

Use CHAR Function to insert checkbox symbol in Excel

Not all the time you need to enter a checkmark by yourself. You can automate it by using a formula as well. Let’s say you want to insert a checkmark based on a value in another cell.

Like below where when you enter value done in column C the formula will return a tick mark in column A. To create a formula like this we need to use CHAR function.

CHAR(number)

Quick INTRO: CHAR Function

CHAR function returns the character based on the ASCII value and Macintosh character set.

Syntax:

CHAR(number)

…how does it work

As I say CHAR is a function to convert a number into an ANSI character (Windows) and Macintosh character set (Mac). So, when you enter 252 which is the ANSI code for a checkmark, the formula returns a checkmark.

Content

Macro Codes in Excel

Learn Excel Quickly
Get full list of Excel Macro Codes