A tick mark ✓ in Excel is more than a visual decoration. It signals completion, approval, or correctness at a glance. Project checklists, quality control forms, task trackers, and financial sign-off sheets all rely on tick marks to communicate status without ambiguity. Excel has no dedicated tick-mark button, but it offers five distinct insertion methods — ranging from a three-click symbol picker to a single formula. This guide covers every method, with examples showing how to make ticks conditional, countable, and interactive.
Specifically, you will learn how to insert a tick with the Symbol dialog, Alt codes, keyboard shortcuts, the CHAR function, and Unicode characters. Additionally, later examples show how to build a conditional tick using IF, create a self-counting checklist, and use data validation to restrict a column to ticks and crosses only. No prior knowledge of VBA or formulas is required for any of the insertion methods.
What Tick Mark Symbols Are Available in Excel?
Excel supports two families of tick marks. The first family lives in the Wingdings and Wingdings 2 specialty fonts — these are the classic symbols that Excel tutorials have used for decades. The second family uses Unicode standard characters that display correctly in any modern font without a font change. Choosing between them depends on whether you need formula-based insertion or direct copy-paste simplicity.
| Symbol | Name | Font / Method | CHAR code | Unicode |
|---|---|---|---|---|
| ✓ | Check mark | Wingdings or any modern font | =CHAR(252) in Wingdings | U+2713 |
| ✔ | Heavy check mark | Any modern font | — | U+2714 |
| ☐ | Ballot box (empty) | Any modern font | =CHAR(253) in Wingdings | U+2610 |
| ☑ | Ballot box with check | Wingdings or Unicode | =CHAR(254) in Wingdings | U+2611 |
| ✕ | Multiplication X (cross) | Any modern font | =CHAR(251) in Wingdings | U+2715 |
| ✖ | Heavy ballot X | Any modern font | =CHAR(84) in Wingdings 2 | U+2716 |
What Methods Insert a Tick Mark in Excel?
Five methods exist for inserting tick marks in Excel. Each suits a different situation. The Symbol dialog is best for one-off insertions. Alt codes are fastest for keyboard-only users. The CHAR function is essential when the tick must appear inside a formula. Unicode copy-paste works in any font. Data validation is the right choice when multiple users need to enter ticks consistently.
| Method | Setup needed? | Works in formulas? | Best for |
|---|---|---|---|
| Symbol dialog | None | No | One-off insertions, beginners |
| Alt code (Alt+0252) | Num Lock on, Wingdings font | No | Fast keyboard-only entry in Wingdings cells |
| Keyboard shortcut (Shift+P) | Wingdings 2 font on the cell | No | Fastest method in a pre-formatted column |
| =CHAR(252) | Wingdings font on the cell | Yes — use in IF formulas | Conditional and automated ticks via formulas |
| Unicode ✓ copy-paste | None | Yes (as text) | Any font, shared workbooks, no font dependency |
Examples 1–4: Inserting Tick Marks
The Symbol dialog is the most reliable method for inserting a tick mark in any Excel version. It requires no memorised codes and no font knowledge. You simply navigate to the symbol, select it, and click Insert. The tick appears in the selected cell using the Wingdings font, which Excel applies automatically when you choose it from the dialog.
Alt codes let you insert symbols by holding Alt and typing a number on the numeric keypad. For tick marks in Wingdings, the key combination is Alt + 0252. The cell must already be formatted with the Wingdings font before you type the Alt code — otherwise the code produces a number or a different character. Format the column with Wingdings first, then use the Alt code for rapid entry.
The CHAR function converts a character code into its corresponding symbol. In Wingdings, CHAR(252) returns the tick mark character. This method is essential when you need the tick to appear as part of a formula result rather than as manually entered text. Specifically, combining CHAR(252) with IF creates a conditional tick that appears or disappears based on logic in another cell.
Unicode tick marks are the simplest approach for modern Excel. Characters ✓ (U+2713) and ✔ (U+2714) display correctly in any modern font — Calibri, Arial, Segoe UI, and all default Excel fonts support them. Consequently, Unicode ticks work in shared workbooks and exported PDFs without font embedding concerns. Copy the character and paste it wherever needed.
Examples 5–8: Practical Tick Mark Applications
Checklists, Counting, Validation, and Colour Coding
A conditional tick mark updates automatically as data in a linked cell changes. This pattern is the foundation of automated checklists and status dashboards. When a task is marked as complete in column A, the tick appears in column B without any manual entry. The formula also handles percentage thresholds, date comparisons, and numeric conditions with equal ease.
Once tick marks are in a column, counting them tells you how many tasks are complete. COUNTIF works for both manually entered ticks and formula-generated ones. However, the approach differs depending on whether the ticks are Wingdings CHAR(252) characters or Unicode ✓ characters. The CHAR version requires matching the exact character; the Unicode version matches the character directly as text.
Data validation restricts what users can enter in a cell. For a tick-and-cross column, validation ensures that only the tick character or the cross character is accepted — preventing accidental text entries like "yes" or "complete" that would break the COUNTIF formulas. This is particularly useful in shared workbooks where multiple people enter data.
A green tick and a red cross communicate status faster than any label. Conditional formatting applies colour automatically based on the cell content. Specifically, cells containing the tick character turn green, cells with the cross turn red. This approach works whether the characters are Wingdings or Unicode. Additionally, you can extend it to colour the entire row based on the status column.
Common Issues and How to Fix Them
The CHAR formula shows a letter instead of a tick mark
CHAR(252) without the Wingdings font displays the standard ASCII character for code 252, which appears as a number or letter. The fix is straightforward: select the cell containing the formula, then change the font to Wingdings in the Font dropdown. The letter immediately converts to a tick mark. Format the column before entering the formula to avoid this issue on future entries.
The Alt code types a number instead of a tick mark
Alt codes require Num Lock to be active and a numeric keypad — not the number row at the top of the keyboard. On laptops without a dedicated keypad, Alt codes often do not work at all. In that case, use the Shift+P shortcut in Wingdings 2, copy-paste a Unicode ✓ character, or use the Symbol dialog instead. Additionally, the cell must be in Wingdings font before pressing the Alt code — entering the code first in a standard font produces the wrong character.
COUNTIF returns zero even though ticks are visible
This happens when the COUNTIF criterion does not match the character in the cell. If the ticks were inserted as Wingdings CHAR(252), the criterion must be =CHAR(252) (with the cell formatted Wingdings), not the Unicode ✓ character. Conversely, if the ticks are Unicode ✓, use "✓" as the criterion. Mixing the two methods in the same column causes COUNTIF to miss some ticks. Standardise on one method throughout the column.
Frequently Asked Questions
-
How do I insert a tick mark in Excel?+There are five methods. First, use Insert → Symbol → Wingdings font → character code 252. Second, format the cell as Wingdings and press Alt+0252 on the numeric keypad. Third, format the cell as Wingdings 2 and press Shift+P. Fourth, format the cell as Wingdings and enter =CHAR(252) as a formula. Fifth, copy the Unicode character ✓ and paste it directly into any cell without changing the font. For shared workbooks, the Unicode copy-paste method is the most portable. For conditional ticks driven by formulas, use =CHAR(252) in a Wingdings-formatted cell.
-
What is the keyboard shortcut for a tick mark in Excel?+The fastest keyboard shortcut is Shift+P in a cell formatted with the Wingdings 2 font. This produces the tick mark character instantly. For the Wingdings font, use Alt+0252 on the numeric keypad with Num Lock on. For a font-independent shortcut, copy the Unicode ✓ character once, then paste it with Ctrl+V wherever you need a tick. If you use ticks frequently, consider creating a Named Range or AutoCorrect entry that expands a short code like "//tick" to the ✓ character automatically.
-
How do I create a formula that shows a tick or a cross?+Use an IF formula combined with CHAR to show different symbols based on a condition. Format the result cell as Wingdings, then enter: =IF(A2="Done", CHAR(252), CHAR(251)). This returns a tick when A2 equals "Done" and a cross otherwise. For a Unicode version without font change: =IF(A2="Done","✓","✗"). Extend to three states with a nested IF: =IF(A2="Done","✓", IF(A2="In Progress","—","✗")). The Unicode version works in any Excel font and is easier to share.
More Questions About Tick Marks in Excel
-
How do I count tick marks in Excel?+Use COUNTIF with the tick character as the criterion. For Wingdings ticks: =COUNTIF(B2:B50, CHAR(252)). For Unicode ticks: =COUNTIF(B2:B50, "✓"). Both formulas return the number of cells containing that exact character. To calculate the percentage of items ticked, divide the COUNTIF result by the total number of rows. COUNTIF also works if the ticks were inserted via the Symbol dialog, Alt codes, or keyboard shortcuts — as long as the character in the cell matches the criterion exactly.
-
Why does my tick mark look like the letter "ü" in Excel?+Character 252 in standard fonts is the lowercase ü (u with umlaut). The tick mark at code 252 only appears when the cell is formatted with the Wingdings font. Select the cell, change the font to Wingdings from the Font dropdown, and the ü will instantly become a tick mark ✓. Alternatively, switch to a Unicode tick mark (✓ or ✔) which displays correctly in any font without this issue.
-
Can I use a tick mark in conditional formatting?+Yes. Conditional formatting can check whether a cell contains a tick character and apply colour accordingly. Go to Home → Conditional Formatting → New Rule → Format only cells that contain → equal to, then paste the tick character in the value field. Set the fill colour to green and click OK. Add a second rule for the cross character with a red fill. To colour entire rows based on the status column, use a formula rule with =$B2="✓" applied to the full data range. The $ before B is essential — it locks the column reference so each row checks its own B cell.