how to merge cells in google sheets
To merge cells in Google Sheets, you basically select a range, hit a merge option, and choose what happens to the contents.
How to Merge Cells in Google Sheets
(Quick Scoop guide + a bit of âwhat people get wrongâ)
Core Ways to Merge Cells
1. Standard toolbar/menu merge (desktop)
This is the classic way most people use.
- Select the cells you want to merge (for example A1:C1 for a big header).
- Go to Format â Merge cells.
- Choose one of:
- Merge all â combines everything into one big cell, only the topâleft value is kept.
* **Merge horizontally** â merges cells across each selected row.
* **Merge vertically** â merges cells down each selected column.
- Or click the Merge cells icon in the toolbar and pick the same options from the dropdown.
After merging, Google Sheets centers the text vertically in that merged cell by default.
2. On mobile (Google Sheets app)
If youâre on your phone, the flow is slightly different but the idea is the same.
- Open your sheet and select the cells you want to merge (tap, then drag the blue handles).
- Tap the formatting icon (usually a letter âAâ with lines).
- Go to the Cell tab.
- Scroll down and toggle Merge on.
On mobile this toggle basically does a âmerge allâ and keeps only the upperâleft cellâs value.
3. Keyboard shortcuts style (desktop navigation)
If you like going via menus but faster:
- Select your cells.
- Open Format â Merge cells.
- Then press:
- A for Merge all.
* **V** for **Merge vertically**.
* **H** for **Merge horizontally**.
This is handy when youâre doing a lot of formatting in one sitting.
Important Warnings (Peopleâs Common Headaches)
Merging is visual; it does not combine the data inside each cell (and it can even throw some away).
- Only the content of the topâleft cell is preserved; the rest is discarded.
- Sorting, filtering, and some formulas become awkward or break when there are many merged cells in the middle of a data table.
- Overâmerging can make your spreadsheet look nice but behave badly (especially for reports used by other people).
If you care about preserving all values, use a formula-based âmergeâ (really: text combining) instead of actual merged cells.
How to âMergeâ Text Without Losing Data
Instead of merging the cells themselves, you can keep each cell separate and combine the values into a new cell, for example to create full names or combined labels.
Popular options:
- Ampersand:
=A1&" "&B1â joins A1 and B1 with a space.
CONCATENATE:=CONCATENATE(A1," ",B1)â same effect, more explicit.
JOIN:=JOIN(" ",A1:C1)â joins a range with a delimiter between each value.
TEXTJOIN:=TEXTJOIN(" ", TRUE, A1:C1)â like JOIN, but can ignore empty cells (thatTRUEflag).
These let you âmergeâ information into one display cell while keeping your original data intact and sortable.
Mini âWhat people ask on forumsâ
People on Google Sheets forums often ask things like:
âCan I merge cells across a whole sheet?â
âIs there a way to merge cells but keep all the values?â
The usual expert replies are roughly:
- Technically you can merge lots of cells, but you shouldnât do it across a full data range you intend to sort or analyze.
- If you want to keep all values, use formulas like
TEXTJOIN,JOIN,CONCATENATE, or&instead of real merges.
So, visually merging is great for headers, section titles, and presentation; formula âmergingâ is better for real data work.
Quick HTML Summary Table (for your post)
| Method | Where | Steps | Keeps all data? | Best use |
|---|---|---|---|---|
| Merge all / vertically / horizontally | Desktop toolbar or Format menu | Select range â Format â Merge cells â choose type (or use toolbar icon). | No, only top-left cell value is kept. | Headers, titles, visual layout. |
| Mobile Merge toggle | Google Sheets app | Select cells â formatting icon â Cell tab â toggle Merge. | No, keeps the upper-left value only. | Quick formatting on phone/tablet. |
| Text formulas (&, CONCATENATE, JOIN, TEXTJOIN) | Any platform | Write a formula like =TEXTJOIN(" ", TRUE, A1:C1) in a new cell. | Yes, combines all values into one text string. | Data-safe âmergeâ for reports and analysis. |
SEO Bits for Your Post
- Try to use the phrase how to merge cells in Google Sheets in your title, intro, and one subheading.
- Short, scannable sections like âDesktopâ, âMobileâ, and âWithout losing dataâ help readability and search ranking.
- Include at least one example formula and one caution about losing data when merging to match what users typically search and ask in forums.
Meta description idea:
Learn how to merge cells in Google Sheets on desktop and mobile, plus how to combine values without losing data using formulas like TEXTJOIN and JOIN.
Information gathered from public forums or data available on the internet and portrayed here.