Next Line in Google Sheets: Line Breaks and Tips
Learn how to insert a next line in Google Sheets, manage line breaks inside cells, and use formulas to control newline characters for clean, readable spreadsheets with wrap text.

By the end, you’ll know how to add a next line in Google Sheets by inserting line breaks inside a cell, using formulas to generate newlines, and keeping data readable with wrap settings. This quick guide covers keyboard shortcuts for Windows and macOS, how to insert newline via CHAR(10), and common pitfalls to avoid.
Why line breaks matter in Google Sheets
When you need a next line in google sheets within a single cell, line breaks help separate ideas, addresses, notes, and bullet items without multiplying cells. They improve readability in dashboards, reports, and shared sheets where multiple data points must fit into a compact layout. The How To Sheets team emphasizes that thoughtful newline usage can reduce cognitive load for anyone scanning your data. According to How To Sheets Analysis, 2026, clear multi-line formatting within cells supports faster parsing and reduces misreads, especially in dense datasets. In practice, you can use line breaks to keep related items together while preserving a clean sheet structure, which is essential for students, professionals, and small business owners who rely on Google Sheets for daily decisions.
tip_friendly_note_for_block_1_refinement_ensure_merge_check_note_1_wi_1:null}
How to insert the next line in a cell
The most common way to add a next line in google sheets is by using keyboard shortcuts inside the cell. On Windows, press Alt+Enter; on macOS, press Option+Enter. This inserts a newline character without creating a new cell, allowing you to display multiple lines in one cell. If you are editing in the formula bar, the same shortcuts work. You can also type a newline in a formula by concatenating strings with CHAR(10). For example, =A2 & CHAR(10) & B2 will place A2 on one line and B2 on the next. After inserting, press Enter to confirm. Remember to enable wrap text so all lines remain visible as you scroll.
tip_why_skip:None
Tools & Materials
- Computer or laptop with internet access(Any modern browser (Chrome, Edge, Firefox) works with Google Sheets.)
- Google account with Google Sheets access(Sign in to Google Drive to access Sheets.)
- Keyboard with Alt/Option keys(Windows uses Alt+Enter; macOS uses Option+Enter for newline in a cell.)
- Optional: mobile device with Google Sheets app(Test line breaks on mobile for cross-device consistency.)
- Sample dataset for practice(Create a small table (A1:A3) to try newline formulas.)
Steps
Estimated time: 20-30 minutes
- 1
Open the target sheet and locate the cell
Open your Google Sheet and navigate to the cell where you want a multi-line entry. If needed, click the cell to enter edit mode. You can also double-click the cell to begin editing directly. This sets the stage for inserting a next line in google sheets.
Tip: Use arrow keys to navigate quickly to the target cell. - 2
Place the cursor inside the cell
Ensure the caret is at the exact position where you want the newline to appear. If you’re editing in the formula bar, place the cursor there instead of inside the cell. The correct caret position guarantees the newline lands exactly where you expect it.
Tip: You can also move the cursor with Ctrl+Arrow keys to jump within long text. - 3
Insert a newline using the OS shortcut
Press Alt+Enter on Windows or Option+Enter on Mac to insert a line break inside the cell. The content in the first line remains above the break, and the second line starts on a new line within the same cell.
Tip: If the shortcut doesn’t work, ensure the cell is in edit mode. - 4
Enable wrap text for readability
Go to the toolbar and enable Wrap text (Format > Text wrapping > Wrap) so all lines inside the cell are visible without expanding the column. Wrapping makes the next line in google sheets easy to read at a glance.
Tip: If you still don’t see all lines, adjust the column width. - 5
Use CHAR(10) in formulas for newline
In formulas, insert a newline with CHAR(10) to create multi-line results, for example: =A1 & CHAR(10) & B1. This is powerful for building labels or stacked data from multiple fields.
Tip: Enable wrap text to see the results of the formula clearly. - 6
Stack lines from a range using TEXTJOIN
If you want to combine multiple rows into a single cell with line breaks, use TEXTJOIN(CHAR(10), TRUE, range). For example, =TEXTJOIN(CHAR(10), TRUE, A1:A3) stacks A1:A3 with a newline between items.
Tip: TRUE in TEXTJOIN removes empty lines from the result. - 7
Split lines into separate cells with SPLIT
To distribute lines into separate columns, use SPLIT with CHAR(10): =SPLIT(A1, CHAR(10)). If you want rows instead of columns, wrap with TRANSPOSE: =TRANSPOSE(SPLIT(A1, CHAR(10))).
Tip: Be mindful of how you’ll analyze the resulting array. - 8
Test across devices and export formats
Check how line breaks appear on desktop and mobile and test exporting to CSV/Excel to ensure newline characters are preserved. Consistent newline handling reduces surprises when sharing or migrating data.
Tip: Always verify after export to avoid lost formatting.
FAQ
How do I insert a new line inside a Google Sheets cell?
Use Alt+Enter (Windows) or Option+Enter (Mac) within edit mode to create a newline inside the cell. Wrap text to ensure visibility of all lines.
Use Alt+Enter on Windows or Option+Enter on Mac to add a newline inside a cell; turn on wrap text to see all lines.
Can I create line breaks with formulas instead of manual entry?
Yes. Use CHAR(10) to insert a newline in a string and combine with CONCAT, &, or TEXTJOIN. Example: =A1 & CHAR(10) & B1.
You can insert newlines in formulas using CHAR(10), then combine with other text.
How do I wrap text after adding line breaks?
Select the cell or range, go to Format > Text wrapping > Wrap. This makes all lines visible within the cell.
Wrap text to ensure all lines show in the cell.
Why don’t I see line breaks in the cell after pasting data?
Pasted content may normalize line breaks; enable wrap text and consider using REGEXREPLACE to standardize newline characters.
Pasted data can lose newline formatting; check wrap text and normalize characters.
How can I split newline-delimited text into separate cells?
Use SPLIT with CHAR(10), e.g., =SPLIT(A1, CHAR(10)). Use TRANSPOSE if you need rows instead of columns.
Split on newline with the SPLIT function, and rotate with TRANSPOSE if needed.
Are line breaks preserved when exporting to CSV?
Line breaks are typically preserved, but behavior can vary by program. Use CHAR(10) in formulas and test your export.
Exported CSVs usually keep newline characters, but test with your target program.
Watch Video
The Essentials
- Insert line breaks with OS shortcuts.
- Use CHAR(10) in formulas for newline creation.
- Enable Wrap Text to display all lines.
- Split or join lines with SPLIT and TEXTJOIN.
- Test display across devices and exports.
