Inserting Bullet Points in Google Sheets

There are four ways to insert bullet points in Google Sheets: using a keyboard shortcut, copy-pasting from other applications/web pages, custom number formatting, and using formulas.

I recommend using custom formatting for creating bullet lists in Google Sheets, as it doesn’t involve adding a physical character at the beginning of the list items.

Example of a Bulleted List in Google Sheets:

Example of a Bulleted List in Google Sheets

Option 1: Adding Bullet Points Using a Keyboard Shortcut

This is the easiest way to add bullet points in Google Sheets. In this approach, you insert a bullet point before typing list items.

For example, assume you have the label “World Cup 2019 Fixtures” in cell A2 and the fixture “Sri Lanka v West Indies, Chester-le-Street (10:30 BST)” in cell A3.

Here is how to insert a bullet point before writing the list items:

  1. Double-click cell A3.
  2. Press Alt + 7 (Windows) or Option + 8 (Mac). If it doesn’t work in Windows, try using the 7 key on the numeric keypad.
  3. Press the space bar.
  4. Enter “Sri Lanka v West Indies, Chester-le-Street (10:30 BST).”

Follow the same process for cells A4, A5, and so on.

Option 2: Adding Bullet Points Using Copy-Paste

If you want different bullet styles, such as white bullets, inverse bullets, or circled bullets, the best option is to copy them from web pages or Google Docs and paste them into Google Sheets. Here’s how:

1. Copy and Paste Special Characters from Google Docs to Sheets

  1. In your browser’s address bar, type https://docs.new/ and press Enter to open a new Google Docs file.
  2. Click Insert > Special characters.
  3. In the Special Characters window, type “bullet” in the search field.
  4. Click on the bullet point you want to insert into the document.
  5. Highlight the inserted bullet point, right-click, and select Copy.
  6. Double-click cell A3 in Google Sheets.
  7. Right-click and select Paste.

2. Copy and Paste Special Characters from This Page

You can copy the bullet points from the third column of the table below and paste them into your Google Sheets.

Bullet NameFormulaSymbol
Bullet=CHAR(9679)
White Bullet=CHAR(9675)
Triangular Bullet=CHAR(8227)
Hyphen Bullet=CHAR(8259)
Inverse Bullet=CHAR(9688)
Inverse White Bullet=CHAR(9689)
Circle White Bullet=CHAR(9678)
Circled Bullet=CHAR(9673)
Star Bullet=CHAR(9733)
White Star Bullet=CHAR(9734)
Inverse Star Bullet=CHAR(10026)
Flower Symbol=CHAR(10020)
Sixteen Pointed Asterisk Symbol=CHAR(10042)
Snowflakes Symbol=CHAR(10052)
Rotated Heavy Black Heart Symbol=CHAR(10085)
Rotated Floral Heart Symbol=CHAR(10087)
Hand Symbols=CHAR(9754)
=CHAR(9755)
=CHAR(9756)
=CHAR(9758)

Option 3: Adding Bullet Points Using a Formula

The table above contains different formulas based on the CHAR function. You can use one of them. Here’s an example:

To insert the Inverse Bullet symbol, use:

=CHAR(9688)

Assume your list is in A3:A. Use the following array formula in cell B3:

=ArrayFormula(IF(LEN(A3:A), CHAR(9688) & " " & A3:A, ""))
Using an array formula to add bullet points to a list in Google Sheets

Converting Formula-Based Bullets to Static Text

  1. Highlight the range B3:B8 and copy the content.
  2. Right-click cell A3, then select Paste special > Paste values only.
  3. Delete the formula in cell B3.

Option 4: Custom Formatting for Bullet Lists in Google Sheets

I have already explained how to insert bullet symbols using the CHAR function. You can also use this method to create a formatted bulleted list.

For example, to use the Flower Symbol () as a bullet:

Steps:

  1. Get the Symbol in a Blank Cell
    • Enter =CHAR(10020) in any blank cell (e.g., G1).
    • Copy the content using Ctrl + C or right-click and select Copy.
  2. Select the Cell to Apply the Bullet
    • Navigate to cell C3 (where you want to apply the Flower bullet).
  3. Apply Custom Formatting
    • Go to Format > Number > Custom Number Format.
    • In the blank field, paste the Flower symbol (Ctrl + V or right-click and select Paste).
    • Tap the space bar and type @, then click Apply. For more spacing, press the space bar multiple times.
      Applying custom Flower bullet points in Google Sheets using number formatting
  4. Apply Formatting to Other Cells
    • Copy the formatted cell (C3), select the range C4:C6, right-click, and choose Paste special > Paste format only.
    • Repeat this for C8:C11, or use the Format Painter.

This method allows you to create a bullet list in Google Sheets without adding physical characters.

Which Method Should I Choose?

  • Keyboard shortcut: The easiest option for quick bullet insertion.
  • Copy-pasting: Ideal if you need custom bullet styles.
  • Formula-based approach: Useful if you want dynamically generated bullets.
  • Custom formatting: Best if you don’t want a physical character affecting formulas or lookups.

That’s all! I hope you found these tips on inserting bullet points in Google Sheets helpful.

Related Resources

Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Guide Prashanth KV brings a wealth of experience in Google Sheets and Excel, cultivated through years of work with multinational corporations in Mumbai and Dubai. As a recognized Google Product Expert in Docs Editors, Prashanth shares his expertise through insightful blogging since 2012. Explore his blog for practical tips and guidance on maximizing your spreadsheet skills.

Count Consecutive Duplicates in Excel (Dynamic Array Formula)

Counting consecutive duplicates in Excel is useful for analyzing patterns, detecting repetitive sequences, and...

How to Break RANK Ties Alphabetically in Google Sheets

The RANK function in Google Sheets is commonly used to assign rankings to numerical...

Google Sheets: Highlight an Entire Column If Any Cell Has an Error

Google Sheets allows you to highlight an entire column if any cell has an...

Filter Top N per Category in Excel (Using FILTER & COUNTIFS)

You can use a combination of FILTER and COUNTIFS to filter the top N...

More like this

How to Break RANK Ties Alphabetically in Google Sheets

The RANK function in Google Sheets is commonly used to assign rankings to numerical...

Google Sheets: Highlight an Entire Column If Any Cell Has an Error

Google Sheets allows you to highlight an entire column if any cell has an...

Google Sheets: Extract Top N per Group from Query Aggregation

When working with grouped and aggregated data in Google Sheets, you might need to...

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.