How to Insert Line Breaks in Google Sheets

Last Updated : 25 Mar, 2026

In Google Sheets, inserting line breaks refers to the technique of adding multiple lines of text within a single cell to improve clarity and structure. This feature allows users to organize content such as addresses, lists, or detailed notes without spreading information across multiple cells.

Different Ways to Insert Line Breaks in Google Sheets

Method 1: Using Keyboard Shortcuts

Method 2: Using the CHAR Function

Method 3: Dynamic Line Breaks with Formulas

Method 4: Using CONCATENATE for Line Breaks

How to Insert Line Breaks in Google Sheets Using Keyboard Shortcuts

  • Follow the Below steps to Insert Line Breaks in Google Sheets using the Keyboard Shortcuts:
  • Windows/Chromebook: Press Alt + Enter to insert a line break.
  • Mac: Press Ctrl + Option + Enter.

Step 1: Double Click the Cell

How to Line Break in Google Sheets


Step 2: Place the Cursor where you want the line Break


How to Line Break in Google Sheets

Step 3:

  • For Windows/Chromebook: Press Alt + Enter to insert a line break.
  • For Mac: Press Ctrl + Option + Enter.
How to Line Break in Google Sheets

How to Insert Line Break in Google Sheets Using CHAR Function?

  • In Google Sheets, you could insert a line break within a cell by using the function CHAR(10). If applied in a formula, it would insert a line break.
  • Example: =A1 & CHAR(10) & B1
  • This will concatenate the text from the cells A1 and B1, separating them by a line break.

Step 1: Select the Cell

Click in the cell where you want line breaks inserted.

How to Line Break in Google Sheets
Select the Cell

Step 2: Insert the Formula

In the formula bar type =A1 & CHAR(10) & B1 to combine text from cells A1 and B1 with a line break in between.

How to Line Break in Google Sheets
Insert the Formula:

Step 3: Press Enter

The text of A1 and B1 will appear in that cell with a line break.

How to Line Break in Google Sheets
Click Enter

Step 4: Format the Cell

If text doesn't wrap onto multiple lines: After selecting the cell go into Format > Text wrapping and click Wrap. This sets the text correctly with line breaks.

We have already discussed it in the above section.

How to Insert Dynamic Breaks with Formulas

  • To dynamically insert line breaks into a formula use the function CHAR(10) in conjunction with any of several other functions such as IF or ARRAYFORMULA or JOIN.
  • Example: =ARRAYFORMULA(A1:A5 & CHAR(10) & B1:B5)
  • This places a line break between the paired elements from column A and column B.

For using Dynamic Breaks with Formulas the steps are following:

Step 1: Select the Cell

Click on the cell where you want the concatenated results with line breaks to appear.

How to Line Break in Google Sheets
Select the Cell

Step 2: Enter the Formula

Type =ARRAYFORMULA(A1:A5 & CHAR(10) & B1:B5).

How to Line Break in Google Sheets
Enter the Formula: Type =ARRAYFORMULA(A1:A5 & CHAR(10) & B1:B5).

Step 3: Press Enter

The cell will now display concatenated text from ranges A1:A5 and B1:B5, separating corresponding values with line breaks.

How to Line Break in Google Sheets
Press Enter

Step 4: Enable Text Wrapping

Highlight the cells holding the results of this formula. Go to Format > Text wrapping and select Wrap so that the text shows up with line breaks.

How to Line Break in Google Sheets
Enable Text Wrapping

How to Insert Line Break in Google Sheet Using CONCATENATE

  • While concatenating a number of cells, you could also control where the line breaks go by adding CHAR(10) between the values.
  • Example: =CONCATENATE(A1, CHAR(10), B1, CHAR(10), C1)
  • This will insert line breaks between the values of cells A1, B1, and C1.

Step 1: Click on the Cell

Click in the cell where you want to see the concatenated result with line breaks.

How to Line Break in Google Sheets
Select the cell

Step 2: Inset the Formula

Type =CONCATENATE(A1, CHAR(10), B1, CHAR(10), C1). This will concatenate values at A1, B1, and C1 with a line break, CHAR(10) between each.

How to Line Break in Google Sheets
Inset the Formula: Type =CONCATENATE(A1, CHAR(10), B1, CHAR(10), C1).

Step 3: Press Enter

Now the cell will have the concatenated text with line breaks between each part of it.

How to Line Break in Google Sheets
Press Enter

Step 4: Enable Text Wrapping

Highlight the result cell. Format > Text wrapping and check Wrap to make sure the text with line breaks is looking good.

How to Line Break in Google Sheets
Enable Text Wrapping Format > Text wrapping and check Wrap

Step 5: Adjust Row Height (if necessary)

Manually adjust the height of the row so all the lines can be seen.

How to Line Break in Google Sheets
Adjust Row Height

Advantage of Line Breaks in Google Sheets

  • Readability: Improved readability for long text entries.
  • Neat Presentation: Keeps data organized without adjusting cell sizes.
  • Flexible Input: Allows multiple pieces of information within a single cell.

Disadvantage of Line Breaks in Google Sheets

  • Limited Formatting: Lacks advanced formatting features found in word processors.
  • Sorting Issues: Multiline cells can cause sorting errors.
  • Not Ideal for Large Data Sets: Can reduce clarity in large datasets.

Use Cases for Line Breaks in Google Sheets

  • Text Formatting: Use for addresses or multiline data in a single cell.
  • Notes and Comments: Add additional context in one cell without spreading it across multiple cells.
  • Product Listings: Organize lists of items within a single cell for better presentation.
Comment