Start new line in Excel cell - 3 ways to add carriage return (2024)

The tutorial will teach you three quick and easy ways to add a line break in Excel cell: use a shortcut to type multiple lines, Find & Replace feature to add a carriage return after a specific character, and a formula to combine text pieces from several cells each starting in a new line.

When using Excel for storing and manipulating text entries, you may sometimes want a certain part of a text string to start in a new line. A good example of multi-line text could be mailing labels or some personal details entered in one cell.

In most Office applications, starting a new paragraph is not a problem - you simply press Enter on your keyboard. In Microsoft Excel, however, this work differently - pressing the Enter key completes the entry and moves the cursor to the next cell. So, how do you create a new line in Excel? There are three swift ways to do this.

How to start a new line in Excel cell

The fastest way to create a new line within a cell is by using a keyboard shortcut:

  • Windows shortcut for line break: Alt + Enter
  • Mac shortcut for line feed: Control + Option + Return or Control + Command + Return

In Excel 365 for Mac, you can also use Option + Return. Option is the equivalent of the Alt key on Windows, so it seems the original Windows shortcut (Alt + Enter) now works for Mac too. If it does not work for you, then try the traditional Mac shortcuts above.

If you are accessing Excel for Mac via Citrix, you can make a new line with the Command + Option + Return key combination.

To add a new line in Excel cell with a shortcut, please follow these steps:

  1. Double-click the cell where you want to enter a line break.
  2. Type the first part of the text. If the text is already in the cell, place the cursor where you want to break the line.
  3. On Windows, hold Alt while pressing the Enter key. In Excel for Mac, hold Control and Option while pressing the Return key.
  4. Press Enter to finish up and exit the edit mode.

As the result, you will get multiple lines in Excel cell. If the text still shows up in one line, make sure the Wrap text feature is turned on.
Start new line in Excel cell - 3 ways to add carriage return (1)

Tips to do a carriage return in Excel

The following tips show how to avoid common problems when inserting multiple lines in one cell and demonstrate a couple of unobvious uses.

Enable Wrap text

To see multiple lines in a cell, you need to have Wrap text enabled for that cell. For this, simply select the cell(s) and click the Wrap Text button on the Home tab, in the Alignment group. In some cases, you may also need to adjust cell width manually.
Start new line in Excel cell - 3 ways to add carriage return (2)

Add multiple line breaks to increase spacing between lines

If you'd like to have a gap of two or more lines between different text parts, press Alt + Enter twice or more times. This will insert consecutive line feeds within a cell like shown in the screenshot below:
Start new line in Excel cell - 3 ways to add carriage return (3)

Create a new line in formula to make it easier to read

Sometimes, it may be helpful to show lengthy formulas in multiple lines to make them easier to understand and debug. The Excel line break shortcut can do this too. In a cell or in the formula bar, place the cursor before the argument that you want to move to a new line and press Ctrl + Alt. After that, press Enter to complete the formula and exit the edit mode.
Start new line in Excel cell - 3 ways to add carriage return (4)

How to insert a line break after a specific character

In case you received a worksheet with many one-line entries, breaking each line manually might take hours. Luckily, there is an extremely useful trick to put multiple lines into all selected cells in one go!

As an example, let's add a carriage return after each comma in a text string:

  1. Select all the cells in which you want to start a new line(s).
  2. Press Ctrl + H to open the Replace tab of Excel's Find and Replace dialog. Or click Find & Select > Replace on the Home tab, in the Editing group.
  3. In the Find and Replace dialog box, do the following:
    • In the Find what field, type a comma and a space (, ). If your text strings are separated by commas without spaces, type only a comma (,).
    • In the Replace with field, press Ctrl + J to insert a carriage return. This will insert a line break in place of each comma; the commas will be removed. If you'd like to keep a comma at the end of each line but last, type a comma and then press the Ctrl + J shortcut.
    • Click the Replace All button.

    Start new line in Excel cell - 3 ways to add carriage return (5)

Done! Multiple lines are created in the selected cells. Depending on your input in the Replace with field, you will get one of the following results.

All commas are replaced with carriage returns:
Start new line in Excel cell - 3 ways to add carriage return (6)

A line break is inserted after each comma, keeping all the commas:
Start new line in Excel cell - 3 ways to add carriage return (7)

How to create a new line in Excel cell with a formula

The keyboard shortcut is useful for manually entering new lines in individual cells, and the Find and Replace is great for breaking multiple lines at a time. In case you are combining data from several cells and want each part to start in a new line, the best way to add a carriage return is by using a formula.

In Microsoft Excel, there is a special function to insert different characters in cells - the CHAR function. On Windows, the character code for the line break is 10, so we'll be using CHAR(10).

To put together the values from multiple cells, you can use either the CONCATENATE function or the concatenation operator (&). And the CHAR function will help you insert line breaks in between.

The generic formulas are as follows:

cell1 & CHAR(10) & cell2 & CHAR(10) & cell3 & …

Or

CONCATENATE(cell1, CHAR(10), cell2, CHAR(10), cell3, …)

Assuming the pieces of text appear in A2, B2 and C2, one of the following formulas will combine them in one cell:

=A2&CHAR(10)&B2&CHAR(10)&C2

=CONCATENATE(A2, CHAR(10), B2, CHAR(10), C2)
Start new line in Excel cell - 3 ways to add carriage return (8)

In Excel for Office 365, Excel 2019 and Excel 2019 for Mac, you can also use the TEXTJOIN function. Unlike the above formulas, the syntax of TEXTJOIN allows you to include a delimiter for separating text values, which makes the formula more compact and easier to build.

Here's a generic version:

TEXTJOIN(CHAR(10), TRUE, cell1, cell2, cell3, …)

For our sample data set, the formula goes as follows:

=TEXTJOIN(CHAR(10), TRUE, A2:C2)

Where:

  • CHAR(10) adds a carriage return between each combined text value.
  • TRUE tells the formula to skip empty cells.
  • A2:C2 are the cells to join.

The result is exactly the same as with CONCATENATE:
Start new line in Excel cell - 3 ways to add carriage return (9)

Notes:

  • For multiple lines to appear in a cell, remember to have Text Wrap enabled and adjust the cell width if needed.
  • The character code for a carriage return varies depending on the platform. On Windows, the line break code is 10, so you use CHAR(10). On Mac, it's 13, so you use CHAR(13).

That's how to add a carriage return in Excel. I thank you for reading and hope to see you on our blog next week!

Available downloads

Formulas to enter new line in Excel cell

You may also be interested in

  • How to enter multiple lines in a cell in Excel
  • how to omit the first line in a cell
  • How to remove carriage returns in Excel
  • How to get first line in Excel cell
  • Insert checkbox in Excel: create interactive checklist or to-do list
  • How to insert multiple rows in Excel
  • Row height in Excel: change and auto-fit

As an Excel expert with a demonstrable depth of knowledge in spreadsheet applications, including Microsoft Excel, I will provide detailed insights into the concepts covered in the tutorial.

Adding a Line Break in Excel Cell:

  1. Using Keyboard Shortcuts:

    • Windows: Alt + Enter
    • Mac: Control + Option + Return or Control + Command + Return (Option + Return in Excel 365 for Mac)
    • Excel for Mac via Citrix: Command + Option + Return

    Procedure:

    • Double-click the cell.
    • Type the first part of the text.
    • On Windows, hold Alt and press Enter. On Mac, hold Control and Option, then press Return.
    • Press Enter to finish.

    Result: Multiple lines in the Excel cell.

  2. Carriage Return After a Specific Character:

    • Shortcut: Ctrl + J

    Procedure:

    • Select cells.
    • Press Ctrl + H to open Find and Replace.
    • In "Find what," type the character (e.g., comma and space).
    • In "Replace with," press Ctrl + J for a line break.
    • Click "Replace All."

    Result: Line breaks after the specified character.

  3. Formula to Combine Text from Several Cells:

    • Use CHAR(10) for line break.
    • Formulas:
      • =cell1 & CHAR(10) & cell2 & CHAR(10) & cell3 & ...
      • =CONCATENATE(cell1, CHAR(10), cell2, CHAR(10), cell3, ...)
      • In Excel 365, 2019, and 2019 for Mac: =TEXTJOIN(CHAR(10), TRUE, cell1, cell2, cell3, ...)

    Result: Combined text with line breaks.

Additional Tips:

  • Enable Wrap Text:

    • Necessary for multiple lines to display in a cell.
    • Select cell(s) and click "Wrap Text" in the Home tab.
  • Increase Spacing Between Lines:

    • Press Alt + Enter twice or more for additional line breaks.
  • Create a New Line in Formula:

    • In a cell or formula bar, place the cursor before the argument and press Ctrl + Alt, then Enter.
  • TextJOIN Function:

    • Compact formula for combining text with a specified delimiter.
    • =TEXTJOIN(CHAR(10), TRUE, cell1, cell2, cell3, ...)
  • Character Code for Line Break:

    • On Windows, use CHAR(10); on Mac, CHAR(13).

This comprehensive tutorial covers various methods to add line breaks in Excel cells, catering to different scenarios and user preferences. Applying these techniques enhances the efficiency of working with text entries in Excel. If you have any further questions or need clarification on specific aspects, feel free to ask.

Start new line in Excel cell - 3 ways to add carriage return (2024)

References

Top Articles
Latest Posts
Article information

Author: Twana Towne Ret

Last Updated:

Views: 5498

Rating: 4.3 / 5 (64 voted)

Reviews: 95% of readers found this page helpful

Author information

Name: Twana Towne Ret

Birthday: 1994-03-19

Address: Apt. 990 97439 Corwin Motorway, Port Eliseoburgh, NM 99144-2618

Phone: +5958753152963

Job: National Specialist

Hobby: Kayaking, Photography, Skydiving, Embroidery, Leather crafting, Orienteering, Cooking

Introduction: My name is Twana Towne Ret, I am a famous, talented, joyous, perfect, powerful, inquisitive, lovely person who loves writing and wants to share my knowledge and understanding with you.