How to Insert a Tick Mark in Excel – 7 Methods

 

Method 1 – Adding a Tick Mark with ASCII Characters on Microsoft Notepad

Steps:

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

ASCII-Notepad

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

Method 2 – Using Keyboard Shortcuts to Insert a Tick Mark

Step 1: Cell Selection

  • Select the cells in which you want to insert the tick 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 tick and cross marks as shown below.

How to Insert Tick Mark in Excel-Using Keyboard Shortcut

  • Press SHIFT + P and ENTER to get a tick 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 tick marks, checkboxes, cross marks & cross boxes.

Using Keyboard Shortcut-How to Insert Tick Mark in Excel

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

Using Keyboard Shortcut-How to Insert Tick Mark in Excel


Method 3 – Using the Symbol Dialog Box to Add a Tick 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 tick 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 Tick Mark using the Excel CHAR Function

Use the CHAR function.

Step 1: Altering the Font

  • Select the cell in which you want to insert the tick 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 tick 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 Tick Mark

Step 1: Go to the File Tab and Select Options

  • Click the File tab.

AutoCorrect Feature

  • Click Options.

AutoCorrect Feature

Step 02: 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 tick mark ✔.

Note: 

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

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

Use the Conditional formatting.

The sample dataset showcases names and their corresponding sales.

You want to insert a tick 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 the Conditional Formatting

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

Using Conditional Formatting

Step 03: Applying 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 tick 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 tick 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 Tick Mark

Use a VBA code.

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 on 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 tick 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 tick 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