In Excel: press Alt+7 or Alt+0149 on the numeric keypad for a bullet, or use Insert ▸ Symbol, then Alt+Enter for each new bullet line inside the same cell.
Click the target cell and insert a bullet with Alt+7, Alt+0149 or Insert ▸ Symbol.
Type the item text after the bullet.
Use Alt+Enter to start another bullet line in the same cell.
Turn on Wrap Text and adjust row height so every line is visible.
What this does
Excel has no word-processor bullet list button for cells, but you can insert bullet characters and line breaks. For one bullet per row, put the bullet in its own cell or prefix each item with the bullet character. For multiple bullets in one cell, combine the bullet with Alt+Enter line breaks and turn on Wrap Text. 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 “use bullets 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 workflow that saves repeating the same clicks every week useful in real work: repeatable, auditable, and not dependent on memory or luck.
A worked example
To put three notes in A2, type Alt+7, Space, First item, press Alt+Enter, then repeat for Second item and Third item. Turn on Wrap Text and widen the column. The cell now displays a compact three-line bullet list without changing the underlying sheet structure. Bullets are useful for compact notes, assumptions, checklist items and report annotations, but data that needs sorting or filtering usually belongs in separate rows. One habit worth forming early: name the cells that hold your inputs, so the formula reads in plain language instead of a string of cell addresses. A reviewer — or you in three months — can then follow the logic without decoding what B7 and D2 were supposed to mean, which is most of what makes a sheet maintainable.
In Google Sheets
Everything above works in Google Sheets too. Excel and Sheets share the formula syntax used here; only the surrounding menus are arranged differently. That portability is deliberate — learn it once and it follows you between the two tools and across Windows and Mac. 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. If you take one thing from this page on “use bullets in excel”, make it the habit rather than the keystrokes: set the problem up with labelled inputs, reference those cells, and let Excel do the recomputing. Bookmark the page for the syntax, but do the example once in a blank sheet and check it against the tool above — five minutes of hands-on practice fixes the method in memory far better than re-reading, and it surfaces the small snags while they are still harmless. After that the technique is genuinely yours: faster than searching for it again, and reliable enough to drop into work that other people depend on.
Common mistakes
- Expecting Excel to manage indents and list levels like Word.
- Putting many bullets into one cell when separate rows would sort and filter better.
- Forgetting Wrap Text, which makes additional lines look hidden.
- Using a font that does not contain the chosen bullet symbol.
Frequently asked questions
What is the shortcut for a bullet in Excel?
On Windows with a numeric keypad, Alt+7 or Alt+0149 inserts a bullet character.
How do I put multiple bullets in one cell?
Use Alt+Enter for line breaks and insert a bullet at the start of each line.
Can I use a formula for bullets?
Yes. CHAR(149)&" "&A2 creates a bullet-prefixed text value on Windows-compatible character sets.