How do you concatenate with a space in Google Sheets?

The CONCATENATE function in Google Sheets joins together multiple chunks of data. This function is helpful when managing large sets of information that each need a similar treatment.

For example, you might use the CONCATENATE function if the spreadsheet has one column for a first name and another for a last name, but you want them joined together to form a single cell with both names. You could this manually by typing each name, or you can use CONCATENATE to automate it.

How do you concatenate with a space in Google Sheets?

Many other examples of the CONCATENATE function could be given, so we’ll look at a few below.

A Simple Example

At its simplest form, the CONCATENATE function pieces together two sets of data without any other options. That’s possible with this simple form:

=CONCATENATE(A1,B1)

How do you concatenate with a space in Google Sheets?

Of course, in this example, we’re assuming the first name is in cell A1 and the second in cell B1. You can adapt this to your own spreadsheet by replacing those references with your own.

Pressing Enter with this particular example would produce MaryTruman. As you can see, the first name is butted right up against the last name. The CONCATENATE function did its job in this scenario, but there are other options you can include in it to expand its capabilities, like to add a space or data from other cells.

Using a Space in the CONCATENATE Formula

Knowing how to use spaces with CONCATENATE is important because datasets often aren’t set up exactly how you want them to be. Like in our example above, we want the name to look presentable by adding a space between the two cells.

Spaces are included in this Google Sheets function using double quotes:

=CONCATENATE(A1,” ”,B1)

How do you concatenate with a space in Google Sheets?

If you can’t see here, there’s a space within those quotes. The idea behind using the quotes is that you’re entering data manually and not choosing spreadsheet data.

In other words, A1 and B1 are clearly part of the spreadsheet already, so you’re referencing them by entering them as they are (the cell letter plus the cell number). However, to include your own data within the formula, you need to surround it in quotes.

Adding Text to a CONCATENATE Formula

The CONCATENATE function can do more than just join a couple cells and put a space between them. Below is an example of how to use CONCATENATE to form an entire sentence using cell data.

In this example of the CONCATENATE function, we’re stringing together the county and its rank number, but instead of leaving it at that, we’re using spaces and our own manually-entered data to create a full sentence:

=CONCATENATE(A2, " is", " ranked ", C2, " compared to these other ceremonial counties.")

How do you concatenate with a space in Google Sheets?

To make the formula work like regular English, don’t forget to put spaces where necessary. You can’t add a space right after a cell reference (like C2 above), but you can when using double quotes. As you can see above, we used a space multiple times in our quotes to make the sentence read normally.

Applying the CONCATENATE Formula Elsewhere

Lastly, the only real use of the CONCATENATE function is when dealing with enough data that time is being saved versus entering the data manually. So, all you need to do to make the formula work with the other cells is drag it downward.

Click the cell once so that it’s highlighted. You should see a small box on the bottom right-hand corner of the cell, like this:

How do you concatenate with a space in Google Sheets?

Click and hold that box while dragging it downward to apply it to the dataset. Stop dragging once you’ve reached the last item you want the formula to be applied to. You can always drag it again from there should you need to include more cells later.

How do you concatenate with a space in Google Sheets?

Interestingly, Google Sheets has a similar function called SPLIT. However, instead of joining the cells, it splits one cell into multiple cells depending on which character you choose to mark as the split-off point.

How do you add a space when you concatenate?

There are two ways to do this:.
Add double quotation marks with a space between them " ". For example: =CONCATENATE("Hello", " ", "World!")..
Add a space after the Text argument. For example: =CONCATENATE("Hello ", "World!"). The string "Hello " has an extra space added..

How do you concatenate with a comma and a space?

Concatenate a column with comma/space by formula 1. Select a blank cell you will place the concatenation result in, and enter the formula =CONCATENATE(TRANSPOSE(A2:A16)&",") into it. 2. Highlight the TRANSPOSE(A2:A16)&"," in the formula, and press the F9 key to replace cell reference with cell contents.

How do I merge two columns in Google Sheets with spaces?

Combine Multiple Columns in Google Sheets into One Column.
In the cell D2 insert the formula: =CONCATENATE(B2," ",C2).
Press enter and drag the formula down to the other cells in the column by clicking and dragging the little “+” icon at the bottom-right of the cell..