Inserting a tick or checkmark in Excel can be a useful way to visually indicate completed tasks or successful outcomes. Excel provides several methods to insert ticks, and this guide will walk you through the process, covering different approaches based on your needs and preferences.
Method 1: Using the Symbol Font

One of the simplest ways to insert a tick in Excel is by using the Symbol font. This method is especially handy when you want to add a tick to a cell or use it as a character in a formula.
- Open Excel and select the cell where you want to insert the tick.
- Go to the Insert tab and click on the Symbol button.
- In the Symbol dialog box, select Wingdings from the Font dropdown menu.
- Scroll through the symbols or use the Subset dropdown to navigate to the Dingbats section.
- Locate and double-click on the tick symbol to insert it into the selected cell.
Alt + 0252
on the numeric keypad.
Method 2: Inserting a Tick as an Image

If you prefer a more visually appealing tick or want to use a specific image, you can insert it as a picture in Excel.
- Open Excel and select the cell or location where you want to insert the tick.
- Go to the Insert tab and click on the Pictures button.
- In the Insert Picture dialog box, navigate to the folder containing your tick image.
- Select the image and click Insert to add it to your Excel sheet.
Note: Ensure that the image size is appropriate for your spreadsheet. You can resize the image by clicking on it and dragging the sizing handles.
Method 3: Using Conditional Formatting with Icons

Excel's Conditional Formatting feature allows you to insert ticks based on cell values. This method is ideal for creating dynamic tick indicators.
- Select the range of cells you want to apply conditional formatting to.
- Go to the Home tab and click on the Conditional Formatting dropdown.
- Choose New Rule from the dropdown menu.
- In the New Formatting Rule dialog box, select Icon Sets as the rule type.
- Choose your preferred tick icon from the options provided.
- Set the conditions for the tick to appear. For example, you can set it to show a tick when the cell value is "True" or greater than a certain value.
- Click OK to apply the conditional formatting.
Note: Conditional formatting with icons is a powerful tool for creating visual indicators in your Excel sheets. You can customize the rules to suit your specific needs.
Method 4: Creating a Custom Tick with VBA

If you're comfortable with VBA (Visual Basic for Applications), you can create a custom tick symbol in Excel.
- Open the Visual Basic Editor by pressing
Alt + F11
or going to the Developer tab and clicking on Visual Basic. - In the VBE, go to the Insert menu and click on Module to insert a new module.
- Paste the following VBA code into the module:
Function CustomTick() As String
CustomTick = ChrW(10003)
End Function
- Close the VBE and return to your Excel sheet.
- In the cell where you want the tick to appear, enter the formula
=CustomTick()
and press Enter.
Note: The VBA code creates a custom function that returns the Unicode character for the tick symbol. You can use this function in any cell to insert a tick.
Conclusion

Inserting a tick in Excel is a straightforward process, and there are multiple methods to choose from based on your requirements. Whether you prefer a simple symbol, a custom image, dynamic conditional formatting, or a VBA-powered solution, Excel provides the tools to enhance the visual appeal and functionality of your spreadsheets.
FAQ

Can I use a different font for the tick symbol?
+Yes, you can use different fonts to insert a tick symbol. However, not all fonts support the tick symbol, so you may need to explore various options. The Wingdings font is a popular choice for tick symbols.
How can I resize the tick image I inserted?
+To resize an inserted tick image, simply click on the image and drag the sizing handles to adjust its size. You can also use the Format tab in the Picture Tools contextual tab to access more advanced resizing options.
Is it possible to change the color of the tick icon in conditional formatting?
+Yes, you can change the color of the tick icon in conditional formatting. After applying the conditional formatting, click on the tick icon in the cell. This will open the Format Cells dialog box, where you can select a different color for the icon.
Can I use the VBA custom tick function in formulas?
+Absolutely! The VBA custom tick function returns a string, so you can use it in formulas just like any other text value. For example, you can concatenate it with other text or use it in conditional formatting rules.