In this article we will show you exactly how to combine cells in Google Sheets. Just follow the simple steps below:
Some ways you can select the cells are the following:
There is a shortcut to merge cells without going through the Format option in the main menu of Google Sheets. The icon is located along the main toolbar alongside the Borders icon and the Fill Color icon.
A pop-up box will appear reminding you that only the top-leftmost value is retained in the merged cell. Click Ok.
They are now merged:
No, they have to be adjacent.
Yes. However, they should be arranged so that its whole shape is still a rectangle when merged. You cannot merge them to form an L-shaped, for example.
No, because this method only retains the data from the first cell.
If you want to combine only the data, check our tutorial about how to do so in Google Sheets.
You need to do some extra steps:
For this example, they are A1 and B1.
The CONCAT function can be used to combine the data from two sources. Its syntax is
=CONCAT(cell1,cell2)
Where cell1 and cell2 contain the data. If you want to combine three or more of them, use the CONCATENATE function:
=CONCATENATE(cell1,cell2,cell3,...)
Where cell1, cell2, and cell3 contain the data. For our example, we want to combine the data in A1 and B1 using the CONCAT function. The resulting formula is
=CONCAT(A1,B1)
The result of the formula is:
We need to do this in order to keep the result of CONCAT formula when we merge them in the next step. Right-click on the cell containing the formula, copy it using the keyboard shortcut (Ctrl+C in Windows and ⌘+C in Mac), select Paste special, then select Values only.
This will replace the formula with its output value.
The icon for Merge cells command is just along the toolbar.
A pop-up box will appear reminding you that only the top-leftmost value will be preserved. Click OK.
Result:
You can use the keyboard shortcuts in doing this:
Output:
You can clean it up by deleting the cell we use to temporarily hold the data.