How to Insert a Check Mark in Excel – 7 Methods

Method 1 – Adding a Check Mark with ASCII Characters using the Microsoft Notepad

Steps:

  • Open the Microsoft Notepad.
  • Press & hold ALT and use the keyboard number pad to enter 251.

ASCII-Notepad

  • Copy the check mark and paste it into Microsoft Excel.

Method 2 – Using Keyboard Shortcuts to Insert a Check Mark

Step 1: Cell Selection

  • Select the cells in which you want to insert the check mark. Here, C5.

Using Keyboard Shortcut

Step 2: Changing the Font

  • Change the font to Wingdings 2.

Using Keyboard Shortcut

Step 3: Using the Keyboard Shortcuts

  • Use, the keyboard shortcuts to insert check and cross marks as shown below.

How to Insert Tick Mark in Excel-Using Keyboard Shortcut

  • Press SHIFT + P and ENTER to get a check mark.
  • Press SHIFT + O to get a cross mark.

How to Insert Tick Mark in Excel-Using Keyboard Shortcut

Wingdings can also be used to insert check marks, checkboxes, cross marks & cross boxes.

Using Keyboard Shortcut-How to Insert Tick Mark in Excel

  • Webdings can be used to insert check marks & cross marks.

Using Keyboard Shortcut-How to Insert Tick Mark in Excel


Method 3 – Using the Symbol Dialog Box to Add a check Mark

Step 1: Selecting the Cells

  • Here, C5 is selected.

Using Symbol

  • Go to the Insert tab.

Using Symbol

  • Select Symbols.

Using Symbol

Step 2: Choosing the Font and Character Code

  • Click Symbols.
  • Change the font to Wingdings.
  • Enter  252 in the Character code box and click Insert.

Using Symbol-How to Insert Tick Mark in Excel

This is the output.

Using Symbol-How to Insert Tick Mark in Excel

  • Copy and paste the symbol. You can also use the Segoe UI Symbol font to get check marks in Excel.
  • In the Character code box, enter 2714.

Using Symbol-How to Insert Tick Mark in Excel

This is the output.

Using Symbol-How to Insert Tick Mark in Excel

Read More: How to Insert Symbol in Excel Footer


Method 4 – Inserting a check Mark using the Excel CHAR Function

Step 1: Altering the Font

  • Select the cell in which you want to insert the check mark. Here, C5.
  • Change the font to Wingdings.

Using CHAR Function-How to Insert Tick Mark in Excel

Step 2: Entering the Character Codes

  • Enter =CHAR(252) to insert a check mark.
  • Insert symbols using the CHAR function based on the codes given in the table below.

Using CHAR Function-How to Insert Tick Mark in Excel

Read More: How to Insert Sign in Excel Formula


Method 5 – Using the AutoCorrect Feature to Insert a check Mark

Step 1: Go to the File Tab and Select Options

  • Click the File tab.

AutoCorrect Feature

  • Click Options.

AutoCorrect Feature

Step 2: Proofing and AutoCorrect Options

  • In Options, select Proofing.
  • Click AutoCorrect Options.
  • In the dialog box:
    • Replace: CMARK
    • With: ✔
  • Click Add.
  • Click OK.

AutoCorrect Feature-How to Insert Tick Mark in Excel

Cells containing CMARK will be replaced with the check mark ✔.

Note: 

  • The autocorrect feature is case-sensitive. So, CMARK must be in caps.

Method 6 – Applying the Conditional Formatting to Insert a check Mark

The sample dataset showcases names and their corresponding sales.

To insert a check mark for sales above $3000 and a cross mark for sales below $3000.

Using Conditional Formatting

 

Step 1: Creating a Copy of the Cell

  • Enter =C5 in D5. If the values in column C change column D will be updated automatically.
  • Drag down the Fill Handle.

Using Conditional Formatting

Step 2: Using Conditional Formatting

  • Select all the cells in the column.
  • In the Home tab, click Conditional Formatting.
  • Select New Rule.

Using Conditional Formatting

Step 3: Applying a New Rule 

  • In New Formatting Rule, click Format Style.
  • Choose Icon Sets.

Using Conditional Formatting-How to Insert Tick Mark in Excel

Step 4: Choosing the Icon Sets

  • Select the check mark and cross mark.
  • Check Show Icon Only.

Using Conditional Formatting-How to Insert Tick Mark in Excel

Step 5: Providing the Condition

  • Change the exclamation mark to a cross mark by clicking the dropdown list.
  • Change Type from Percent to Number.
  • Set the Value and click OK.

Using Conditional Formatting-How to Insert Tick Mark in Excel

  • Insert a check mark for Sales exceeding $3000 and a cross mark for Sales below $3000.

Using Conditional Formatting-How to Insert Tick Mark in Excel

Read More: How to Insert Rupee Symbol in Excel


Method 7 – Using VBA to Add a check Mark

Step 1: Using a VBA Code

  • Right-click the worksheet.
  • Click View Code.

Using VBA Code

Step 2: Locating the Worksheet

  • Select the worksheet from the list.
  • Enter the code.

Using VBA Code

Step 3: Providing the Command

  • Press the two dropdowns on the right.
  • Click the first dropdown and change it to Worksheet.

Using VBA Code-How to Insert Tick Mark in Excel

  • Click the second dropdown and change it to BeforeDoubleClick.

Using VBA Code-How to Insert Tick Mark in Excel

Step 4: Entering the VBA Code

  • Copy the code here and paste it.
Option Explicit
Private Sub Worksheet_BeforeDoubleClick(ByVal ActiveCell As Range, Cancel As Boolean)
If ActiveCell.Column = 3 And ActiveCell.Value <> Chr(214) Then
    With ActiveCell
        .Value = Chr(214) 'Required'
        .Font.Name = "Symbol" 'Required'
        .Font.FontStyle = "Regular"
        .Font.Size = 12
        .HorizontalAlignment = xlCenter
        .VerticalAlignment = xlCenter
    End With
ElseIf ActiveCell.Column = 3 And ActiveCell.Value = Chr(214) Then
    ActiveCell.ClearContents
End If
End Sub

The code will insert a check mark in column C (Column = 3).

Using VBA Code-How to Insert Tick Mark in Excel

  • Go back to the worksheet.

Using VBA Code-How to Insert Tick Mark in Excel

  • Double-click the cells to insert a check mark.
  • Double-click the cells again to remove it.

Download Practice Workbook

 


Related Articles


<< Go Back to Insert Symbol in Excel | Excel Symbols | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Eshrak Kader
Eshrak Kader

Eshrak Kader is a dedicated professional with a BSc. Degree in Naval Architecture and Marine Engineering from Bangladesh University of Engineering and Technology. He boasts a rich background in Microsoft Office Suite, and over the past year, he has authored over 120 insightful articles for the ExcelDemy. Currently, Eshrak leads a team of 5 in the ExcelDemy Video project and enjoys problem-solving and making videos on Excel. Eshrak’s passion for continuous learning underscores his commitment to excellence in... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo