How to Start a New Paragraph in Excel (Line Breaks Explained)

Excel isn't a word processor — and that distinction matters the moment you try to press Enter and watch your cursor jump to the next cell instead of the next line. Starting a new paragraph inside a single cell is absolutely possible, but it works differently than in Word or Google Docs, and the behavior shifts depending on your platform, settings, and what you're actually trying to accomplish.

Why Excel Doesn't Behave Like a Text Editor

Excel is built around the cell as the unit of data. By default, pressing Enter confirms your input and moves you down one row. This is intentional — most Excel use cases involve structured data where each cell holds a single value.

But there are plenty of legitimate reasons to put multi-line content inside a cell: notes, address fields, descriptions, comments embedded in a table, or formatted labels. For those situations, Excel supports in-cell line breaks, which function like paragraph returns within the cell boundary.

The Core Shortcut: Alt + Enter (Windows)

On Windows, the standard way to insert a line break inside a cell is:

Alt + Enter

Here's how it works in practice:

  1. Double-click the cell (or press F2) to enter edit mode
  2. Position your cursor where you want the new line to begin
  3. Press Alt + Enter
  4. Continue typing on the new line

The cell will expand vertically to show the new content, assuming Wrap Text is enabled. If Wrap Text is off, the line break still exists in the data — you just won't see the second line until you enable it or widen the row.

The Mac Equivalent: Control + Option + Enter

On a Mac, the shortcut is slightly different:

Control + Option + Enter

Some Mac users also find that Control + Command + Enter works depending on their Excel version and keyboard layout. If one doesn't work, try the other. The underlying result is identical — a non-printing line break character (specifically, a newline character) is inserted at the cursor position inside the cell.

Enabling Wrap Text So Line Breaks Are Visible 📋

Inserting a line break and seeing it are two different things. If your row height is fixed and Wrap Text is turned off, the second line of your paragraph will be hidden.

To make multi-line content visible:

  • Select the cell(s) in question
  • Go to Home → Alignment → Wrap Text
  • Alternatively, right-click → Format Cells → Alignment tab → check Wrap Text

With Wrap Text on, Excel auto-adjusts the row height to show all lines within a cell. You can also manually drag the row height if you want more control over spacing.

What This Looks Like in the Formula Bar

When you insert line breaks inside a cell, the formula bar will show the content as a single collapsed line by default. You can expand the formula bar by clicking the small expand arrow on its right edge — this gives you a multi-line view that makes editing paragraph-style content much easier.

This is useful to know because it confirms your line break is there even when the cell itself looks odd or truncated.

Using Line Breaks in Formulas

You can also insert line breaks programmatically using the CHAR function:

  • Windows:CHAR(10) represents a line break
  • Mac:CHAR(13) was historically used, though modern Excel for Mac generally aligns with CHAR(10)

Example formula:

="First line" & CHAR(10) & "Second line" 

This is helpful when you're concatenating text from multiple cells and want the result to appear on separate lines. Again, Wrap Text must be enabled on the destination cell for the break to render visually.

Variables That Affect How This Works

Not all Excel environments behave identically. A few factors that change the experience:

VariableHow It Affects Line Breaks
Excel for Windows vs MacDifferent keyboard shortcuts apply
Excel Desktop vs Excel OnlineWeb version has limited formatting behavior
Wrap Text settingMust be on for breaks to display correctly
Row height (auto vs manual)Affects whether additional lines are visible
Cell formatted as text vs generalCan occasionally affect how breaks render in exports

Excel Online, for instance, supports Alt + Enter in some browsers but the behavior can be inconsistent depending on whether you're using Chrome, Edge, or Safari. The desktop application gives the most reliable and predictable results.

When You're Working With Imported or Exported Data

If you're importing data from a CSV or another source and the content contains line breaks, Excel may or may not render them correctly depending on how the file was encoded. Line breaks embedded in CSV files are often wrapped in quotes, and Excel's import wizard handles them with varying degrees of cleanliness.

Similarly, if you export an Excel file with in-cell line breaks to CSV, those breaks may appear as literal newline characters in the output — which can cause problems downstream in databases or other applications. 🔍

The Difference Between a Line Break and a New Cell

It's worth being deliberate about when to use in-cell line breaks versus splitting content across multiple cells or rows.

  • In-cell line breaks work well for display-oriented content: labels, notes, formatted addresses
  • Separate cells are better for data you'll sort, filter, analyze, or reference in formulas

Putting multiple values in one cell using line breaks can make data harder to work with later. A cell containing "Street Address + City + ZIP" as three lines looks clean visually but creates friction the moment you try to extract or sort by any single component.

How much this matters depends entirely on what the spreadsheet is for — a print-friendly layout has very different needs than a data model feeding a dashboard or a report.