In Excel: set the cell font to Wingdings and type a lower-case ü for ✓, or use Insert ▸ Symbol ▸ font: Segoe UI Symbol ▸ character code 2713.
Wingdings: select the cell, set Home ▸ Font to Wingdings, type ü for ✓ or û for ✗.
Unicode: Insert ▸ Symbol, set Font to Segoe UI Symbol, enter 2713 (✓) or 2714 (✔) in Character code, click Insert.
Keyboard: with Num Lock on, hold Alt and type 0252 on the numeric keypad while the cell is in Wingdings.
Copy-paste is fine too: ✓ ✔ ✗ ✘ — pasting keeps them as Unicode text.
For a tick driven by data, keep the truth value in its own column and use =IF(B2, CHAR(252), "") in a Wingdings cell.
For a clickable tick box rather than a character, use Developer ▸ Insert ▸ Check Box, which stores TRUE/FALSE in a linked cell.
What this does
There are three routes and they behave differently. The Wingdings trick is fastest: with the cell in Wingdings, ü prints ✓, û prints ✗, and the boxed versions are ý and ý's neighbours. Insert ▸ Symbol inserts a real Unicode character (U+2713 ✓ or U+2714 ✔) that keeps working in any font. And =CHAR(252) with a Wingdings cell, or a conditional-formatting icon set, makes the mark appear automatically from a condition rather than being typed. A tick typed into a cell is decoration — if you need to count completions, store TRUE/FALSE or 1/0 and show the tick with formatting. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. For “inserting a checkmark in excel”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected cells change, and only then apply the same setup to the full sheet. When this is a ribbon command, the selection matters more than the button: confirm the range, apply the command, then spot-check the output before saving. That is what makes a layout choice that keeps the sheet readable and sortable useful in real work: repeatable, auditable, and not dependent on memory or luck.
A worked example
Fast route: select C2, set the font to Wingdings, type ü and press Enter — the cell shows ✓. Unicode route: Insert ▸ Symbol ▸ Font: Segoe UI Symbol ▸ type 2713 in the Character code box ▸ Insert; this ✓ survives a font change. Automatic route: leave the source column as TRUE/FALSE and put =IF(B2, CHAR(252), "") in a Wingdings-formatted C2, so the tick appears when B2 is TRUE and =COUNTIF(B:B, TRUE) still counts correctly. Ticks show up in every checklist, QA sheet and status tracker, and the distinction that matters is whether the mark is decoration or the data — because only one of those can be counted. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.
In Google Sheets
Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. Keep this page bookmarked for the next time the same question comes up. Better still, rebuild the example once in your own sheet — doing it yourself, with the tool above to check against, is what turns a copied formula into a technique you own. The short version of “inserting a checkmark in excel”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.
Common mistakes
- Typing ü in a non-Wingdings cell and getting a literal ü.
- Storing the tick character as the data and then being unable to count or filter it reliably.
- Using Wingdings characters in a file that will be opened on a machine without that font, where they fall back to letters — Unicode ✓ is the portable choice.
- Mixing ✓ (U+2713) and ✔ (U+2714) in one column so filters treat them as two different values.
- Reaching for a checkbox control when a data-driven ✓ from a formula would be simpler and easier to total.
Frequently asked questions
How do I insert a check mark in Excel?
Set the cell font to Wingdings and type a lower-case ü, or use Insert ▸ Symbol with the Segoe UI Symbol font and character code 2713.
What is the shortcut for a tick?
With the cell in Wingdings, Alt+0252 on the numeric keypad types ✓ and Alt+0251 types ✗. There is no shortcut in the default font.
How do I make a tick appear automatically?
Keep the condition in its own column and use =IF(B2, CHAR(252), "") in a Wingdings-formatted cell, or apply a conditional-formatting icon set to the value.
Tick character or checkbox?
A character is text and is fine for display. A Developer ▸ Insert ▸ Check Box is clickable and writes TRUE/FALSE to a linked cell, which is what you want if the state has to be counted.