How to Start a New Line in Excel (Without Moving to the Next Cell)

Starting a new line inside an Excel cell trips up nearly everyone at some point. You press Enter expecting a line break — and instead Excel jumps you down to the next cell. That's because Excel treats Enter as "confirm and move," not "new line." Getting actual line breaks inside a single cell requires a different approach, and the method that works for you depends on your operating system, your version of Excel, and how you're working with the data.

Why Excel Doesn't Break Lines Like a Word Processor

Excel is built around the concept of one value per cell. Its default behavior treats each cell as a single unit of data — a number, a label, a formula. Line breaks inside cells are supported, but they're a deliberate action, not the default. When you insert a line break, Excel stores a special character (a line feed character, technically CHAR(10)) within the cell's text. The cell has to have Wrap Text enabled for that break to display visually.

This distinction matters: the line break can exist in the data without being visible, which is a common source of confusion.

The Core Method: Keyboard Shortcut for a Manual Line Break

The most direct way to start a new line inside an Excel cell:

  • Windows:Alt + Enter
  • Mac:Control + Option + Return (or Command + Option + Return depending on your Excel version)

Here's how it works:

  1. Double-click the cell to enter Edit mode (or press F2 to enter edit mode from the keyboard).
  2. Click to position your cursor exactly where you want the line break.
  3. Press the appropriate shortcut for your system.
  4. Excel inserts a line break at that point, and the cursor moves to the next line within the same cell.
  5. Press Enter (or click away) when you're done editing to confirm.

If the line break doesn't appear to be working visually, check whether Wrap Text is enabled for that cell. Go to Home → Alignment → Wrap Text. Without it, the line break exists in the data but the cell won't display it as multiple visible lines.

Starting a New Line Using a Formula

Sometimes you need to build multi-line text dynamically — combining values from other cells with line breaks between them. This is where the CHAR(10) function comes in.

On Windows Excel, the line feed character is CHAR(10). A formula like:

=A1 & CHAR(10) & B1 

…will join the contents of A1 and B1 with a line break between them. Again, Wrap Text must be on for the result to display as two lines.

On Mac versions of Excel, the line break character is technically CHAR(13), though modern Mac Excel often handles CHAR(10) correctly as well. If you're sharing files across operating systems, CHAR(10) is generally the safer choice for cross-platform compatibility.

Platform and Version Variables That Change the Experience 🖥️

The exact behavior you'll encounter depends on several factors:

FactorHow It Affects Line Breaks
Operating systemWindows uses Alt + Enter; Mac uses Control + Option + Return
Excel versionOlder Excel for Mac versions used different shortcut combinations
Excel Online (browser)Alt + Enter works in most browsers, but behavior can vary
Mobile (iOS/Android)No keyboard shortcut; line breaks are inserted through the formula bar or formatting menu
Google SheetsUses Ctrl + Enter (Windows) or Cmd + Enter (Mac) — a common point of confusion for switchers

If you're working in Excel Online, the shortcut generally works in Chromium-based browsers (Chrome, Edge) but may conflict with browser-level shortcuts in others. Testing your specific browser matters here.

On mobile versions of Excel, manual line breaks inside cells are less accessible. Some users work around this by editing in the formula bar if it's available, or by building multi-line text using formulas before opening the file on mobile.

When Wrap Text Isn't Enough

Enabling Wrap Text makes the line break visible, but it doesn't fix row height automatically in all situations. If your row height is set to a fixed value, the wrapped content may be cut off visually even though the data is correct. You can auto-fit row height by:

  • Right-clicking the row number → Row Height → Auto-Fit, or
  • Double-clicking the bottom border of the row number to let Excel size it automatically.

This is a detail that affects readability in printed reports, dashboards, and shared workbooks — particularly when other users have different display settings or zoom levels.

Removing Line Breaks in Bulk

If you've inherited a spreadsheet full of unwanted line breaks — often imported from another system or copy-pasted from a web page — you can remove them using Find & Replace:

  1. Open Find & Replace (Ctrl + H on Windows, Command + H on Mac).
  2. In the Find what field, press Ctrl + J (this inserts the line feed character invisibly).
  3. Leave Replace with empty (or type a space if you want the lines joined with a space).
  4. Click Replace All.

You can also use a formula: =SUBSTITUTE(A1, CHAR(10), " ") replaces all line breaks in A1 with a space.

The Variables That Shape Your Specific Situation 🔍

The straightforward answer — press Alt + Enter — covers most desktop users on Windows. But whether that's the full answer for you depends on things like which platform you're on, whether you're working in desktop Excel or the browser version, and whether you're building line breaks manually or generating them through formulas in a larger workbook. Users who share files across Mac and Windows environments, or who work heavily in Excel Online or mobile, encounter enough variation that the "simple" answer doesn't always hold.

How line breaks behave in your workflow — and whether the display looks right — ultimately comes down to the combination of your device, your Excel version, and how the cells around them are formatted.