To start a new line in an Excel cell, edit the cell, place the cursor, then press Alt + Enter on Windows or Control + Option + Return on Mac.
“Skip a line” in Excel can mean a few things. Most people mean one of these: a new line inside a single cell, a blank row between records, or a line break that shows up when you export, print, or paste into another app.
This walkthrough covers the common cases that trip people up. You’ll get the shortcuts, the formula method, and the fixes for the moments when Excel refuses to show the break even though you swear it’s there.
What “Skip A Line” Means In Excel
Before you press anything, it helps to name the target. Excel treats these “line” situations differently, and using the wrong method can leave you with a mess that won’t wrap, won’t print, or won’t survive a copy/paste.
- New line inside one cell: One cell shows two or more lines of text.
- Blank line inside one cell: You want an empty line between two text lines in the same cell.
- Blank row between entries: Your sheet needs a spacer row for readability.
- Line breaks from imports: Data arrives with hidden breaks that need cleaning.
- Line breaks from formulas: Your output should display on multiple lines.
How To Skip A Line In Excel In One Cell With A Shortcut
This is the cleanest approach when you’re typing or editing by hand. It inserts a true line break inside the cell, right where your cursor sits.
Windows Shortcut
Double-click the cell (or select it and press F2). Click where you want the break. Press Alt + Enter.
If you want a blank line between two lines, press Alt + Enter twice in a row.
Mac Shortcut
Edit the cell. Click where you want the break. Press Control + Option + Return.
Why Your Cell Might Not Show The Break
Sometimes the break is there, yet the cell still looks like a single line. That’s usually a display setting issue, not a missing line break.
- Row height is too small: Drag the row boundary downward, or use AutoFit Row Height.
- Wrap Text is off: Turn on Wrap Text so Excel displays multiple lines.
- You’re not in edit mode: If you press Alt + Enter while not editing, Excel may move you to another cell instead of inserting a break.
If you want Microsoft’s official steps for the manual break shortcut, this support page lays it out clearly: Insert a line break in a cell.
Taking A “Skip A Line” Result Further With Wrap Text
Wrap Text and manual line breaks play nicely together. Wrap Text lets Excel flow long text onto multiple lines based on the column width. Manual breaks force a new line at a specific point.
Here’s the everyday pattern that works well: turn on Wrap Text for the column, then use manual breaks only where you want hard separation, like name lines in an address or bullet-style notes.
When Wrap Text Beats Manual Breaks
Wrap Text shines when the break point shouldn’t be fixed. If your column width changes later, manual breaks can make lines look odd. Wrap Text adapts when columns get wider or narrower.
When Manual Breaks Beat Wrap Text
Manual breaks win when the structure matters: street on one line, city and postal code on the next, or two product attributes that must stay on separate lines.
Skip A Line With A Formula Using CHAR
If your multi-line text comes from a formula, you can’t press Alt + Enter inside the formula bar to force a visible break in the result. Instead, you add a line break character into the text you’re building.
In Excel, that character is commonly created with CHAR(10) on Windows. On Mac, Excel still reads the same character in many setups, though results can vary by version and how the text is consumed by other apps.
A Simple Pattern You Can Reuse
Use concatenation with CHAR(10) in the spot where the break should appear. Then make sure the result cell has Wrap Text enabled so you can see the lines.
- Two parts on two lines: =A2 & CHAR(10) & B2
- Label on one line, value on the next: =”Serial:” & CHAR(10) & C2
- Blank line between blocks: =A2 & CHAR(10) & CHAR(10) & B2
Using TEXTJOIN For Clean Multi-Line Lists
If you want to stack a list from several cells into one cell with line breaks, TEXTJOIN is a handy choice. You pick a delimiter and tell Excel whether to ignore blanks.
A common pattern is to use CHAR(10) as the delimiter, then combine a range: TEXTJOIN(CHAR(10), TRUE, A2:A8). Turn on Wrap Text for the output cell.
If you want the official definition of CHAR, Microsoft documents the function here: CHAR function.
Ways To Skip A Line In Excel Without Breaking Your Sheet
There isn’t one “right” method. The best choice depends on whether you’re typing, cleaning imported data, building outputs with formulas, or trying to make printing behave.
Use this table as a quick chooser. It’s built to cover the cases people run into most often.
| Goal | Best Method | Where It Works Best |
|---|---|---|
| New line inside a cell while typing | Alt + Enter (Windows) / Control + Option + Return (Mac) | Addresses, notes, labels, two-line titles |
| Blank line inside the same cell | Press the shortcut twice | Separating paragraphs inside one cell |
| Auto-wrap long text | Wrap Text formatting | Comments, descriptions, long names |
| Line breaks generated by a formula | CHAR(10) inside concatenation or TEXTJOIN | Dashboards, labels, stacked outputs |
| Turn a delimiter into line breaks | Find and Replace, swap delimiter for a line break | Imported lists that use commas, pipes, or slashes |
| Remove stray line breaks from imports | Clean with Find and Replace, then re-insert breaks where needed | CSV exports, pasted text from PDFs |
| Add blank rows between records | Insert rows, or use a helper column + sort/filter workflow | Reports meant for humans, print layouts |
| Keep line breaks visible when printing | Wrap Text + AutoFit Row Height + print preview check | Labels, invoices, shipping sheets |
Convert A Character Into A Line Break With Find And Replace
Sometimes your data uses a visible separator like “ | ” or “, ” and you want each piece on its own line inside one cell. You can swap that separator for a real line break.
Replace A Separator With A Manual Line Break
- Select the target cells or column.
- Open Find and Replace (Ctrl + H on Windows, Command + Shift + H in many Mac setups).
- In Find what, type the separator (like a pipe, comma + space, or a double dash).
- Click into Replace with, then press the manual line break shortcut for your system.
- Run Replace All.
If you see a small dot or odd symbol after replacing, that usually means the original text had hidden characters mixed in. Cleaning spaces and non-printing characters can help, then repeat the replace.
Turn Existing Line Breaks Into A Visible Separator
The reverse move is handy when you need to export clean, single-line records. Replace the line break with a comma-space or a pipe.
In Find and Replace, place your cursor in Find what. Press Ctrl + J on Windows to represent the line break character in that field. Then set Replace with to your separator and run the replace.
Make Line Breaks Behave In Printing And PDF Exports
You can nail the on-screen look and still end up with chopped lines in a printout. Printing adds one more constraint: the row height on paper must fit the wrapped text.
AutoFit The Row Height After Adding Breaks
If you insert breaks and your row stays short, the extra lines may hide. Select the row(s), then AutoFit Row Height. You can also double-click the boundary between row numbers to fit the tallest cell in that selection.
Check Print Preview Before You Commit
Print Preview shows what Excel will clip. If you see truncated lines, try these fixes:
- Widen the column so fewer wraps are needed.
- AutoFit Row Height after turning on Wrap Text.
- Adjust page scaling so the text isn’t forced into a narrower print area.
Why Alt + Enter Doesn’t Work And What To Do Next
When Alt + Enter fails, it’s usually a mode or keyboard issue. Here’s a short troubleshooting pass that covers most cases.
Confirm You’re Editing The Cell
Clicking the cell once isn’t enough. You need the cursor inside the cell, either by double-clicking or pressing F2. Then the shortcut inserts the break instead of moving you around the sheet.
Check Keyboard Settings And Conflicts
Some laptops route Alt combinations through special function layers. If your keyboard has an Fn key, you may need it, depending on the model. In remote desktop sessions, shortcuts can be intercepted by the host machine. If it works locally but not remotely, that’s a strong clue.
Wrap Text And Row Height Still Matter
Even when the break is inserted correctly, it can look like nothing happened if Wrap Text is off or the row height is tight. Turn on Wrap Text and expand the row height to confirm.
Fixing Messy Line Breaks From Imports, Copy/Paste, And Web Data
Imported text can carry line breaks you didn’t ask for. You’ll see symptoms like addresses split across rows, notes that jump lines mid-word, or cells that look empty until you click into them.
Spot Hidden Breaks Quickly
Click into the cell. If the cursor drops to a new line inside the cell, a line break is stored there. If your formula bar shows stacked lines, that’s another giveaway.
Clean First, Then Rebuild The Breaks
A practical workflow is to remove all breaks, then add them back in controlled spots.
- Replace the line break character with a visible separator (pipe or comma-space).
- Trim extra spaces created by the swap.
- Replace the separator back into a line break once the text is stable.
This approach keeps your final layout predictable, and it plays well with exports.
Table Of Common Problems And Fixes For Line Breaks
If you’re stuck, this table maps the symptom to the likely cause and the fastest fix path.
| What You See | Likely Cause | Fix |
|---|---|---|
| Alt + Enter moves to another cell | Not in edit mode | Double-click the cell or press F2, then retry the shortcut |
| Break inserted, but text stays on one line | Wrap Text off | Turn on Wrap Text for the cell or column |
| Only the first line shows | Row height too small | AutoFit Row Height or drag the row boundary |
| Formula shows CHAR(10) output as a single line | Wrap Text off on the result cell | Enable Wrap Text, then re-check the output |
| Exported CSV breaks rows unexpectedly | Cells contain embedded line breaks | Replace breaks with a safe separator before exporting |
| Pasting into another app loses the line breaks | The target app strips line feeds | Paste as plain text, or swap breaks to a separator before pasting |
| Imported data has random breaks mid-sentence | Source text contains hard returns | Replace breaks with a separator, clean spacing, then re-insert breaks only where needed |
| Printing clips the lower lines | Row height not fitted for wrapped text | AutoFit Row Height, widen columns, then re-check Print Preview |
How To Skip A Line In Excel For Blank Rows Between Records
Sometimes you don’t want a break inside a cell. You want a spacer row between groups, like a report layout or a handoff sheet someone will read on-screen.
Insert A Single Blank Row
Select the row number below where you want the blank row. Right-click, choose Insert. If you want two blank rows, repeat the insert once more.
Add Blank Rows Repeatedly Without Pain
If you need blank rows between every record, doing it manually can turn into a slog. A clean approach is to add a helper column that numbers your records, then use a second helper that creates a “spacing” sort order. After sorting, insert rows in the gaps created by the sort grouping, then remove the helpers.
This keeps your data intact while you format a human-readable view.
References & Sources
- Microsoft Support.“Insert a line break in a cell.”Shows the official keyboard shortcut steps for inserting a new line inside an Excel cell.
- Microsoft Support.“CHAR function.”Defines the CHAR function used to insert line break characters in formula-built text.
