How do i merge two words in google sheets?

If you have content in different cells and you want to combine it, there are a couple of useful functions you could use – such as the CONCATENATE Google Sheets function and JOIN.

In this tutorial, I will cover examples of how to concatenate in Google Sheets.

Before we jump to examples, let’s first learn about the concatenate operator and the concatenate function.

  • CONCATENATE Operator in Google Sheets
  • CONCATENATE Google Sheets Syntax
    • Example 1 – Concatenate Google Sheets With Space
      • How to CONCATENATE Whole Columns
    • Example 2 – Google Sheets Concatenate With Separator Like a Comma
    • Example 3 –  How to Combine First and Last Name in Google Sheets With a Running Number
    • Example 4 – How to Concatenate in Google Sheets with the IF Function
  • Alternatives to CONCATENATE Function
    • How to Use the CONCAT Function In Google Sheets
    • Concatenate an Array of Cells with the JOIN Function
    • How to Concatenate More Than 2 Columns In Google Sheets with the & Operator
  • Google Sheets Combine Text From Two Cells FAQ
    • How Do You CONCATENATE in Google Sheets?
    • How Do I Concatenate Two Columns In Google Sheets?
    • Where Is the Concatenate Function in Sheets?
    • How Do You Concatenate 3 Columns in Google Sheets?
    • Why Is Concatenate Formula Not Working?
    • What Is a Concatenation Example?
  • Keep Calm and Keep Concatenating
        • Sumit

CONCATENATE Operator in Google Sheets

Ampersand sign [&] is the concatenate operator that you can use to combine cells in Google Sheets.

For example, suppose you have the first name and the last name as shown below:

You can use the following formula to combine the first and the last name.

=A2&" "&B2

Note that I have used a space character in between the reference for the first and the last name as I want these words to be separated by a space character. You can use any separator [also called delimiter] such as comma, hyphen, semi-colon, etc.

While ampersand concatenates operate works great, it’s useful only when you have a couple of cells to combine. In case you have a lot of cells that you need to concatenate in Google Sheets, it’s better to go for the functions.

CONCATENATE Google Sheets Syntax

Concatenate function in Google Sheets allows you to quickly combine the values in cells.

Here is the syntax of the Concatenate function:

CONCATENATE[string1[string2, …]]

  • string1 – this is the initial string [first string].
  • string2 – this is the second string that you want to concatenate to the first one. You can specify

Now let’s see a couple of examples of using the CONCATENATE function in Google Sheets.

Example 1 – Concatenate Google Sheets With Space

Suppose you have the data set of first name and last name and you want to join these with space in between.

Here are the steps to do this:

  1. Type =CONCATENATE[ into the desired cell
  2. Enter the first string, A2 in our example
  3. Type the delimiter [separator] inside double quote marks, in our case, we want to use a single space, like so: ” “
  4. Enter the source for the second string, B2 in our example

Here is what the formula would look like:

=CONCATENATE[A2," ",B2]

Note that the function has 3 arguments – the first name, a space character in double quotes, and the second name.

How to CONCATENATE Whole Columns

Once you have the formula in the first cell, you can use the fill handle to click and drag through the rest of the column too.

Example 2 – Google Sheets Concatenate With Separator Like a Comma

Suppose you have the same dataset of names, but instead of combining it with space in between, you want it in the following format: last name, first name.

Here is an example formula for Google Sheets to combine cells with comma:

=CONCATENATE[B2,", ",A2]

Example 3 –  How to Combine First and Last Name in Google Sheets With a Running Number

Concatenate function can also be useful when you want to combine the text with a running number.

For example, in the dataset below, you want to get add a running number in front each name. So for the first name, it will be 01 – John Spike, for the second name it should be 02 – Brad Connor, and so on.

Here is the formula that can get this done:

=CONCATENATE[ROW[]-1," - ",A2," ",B2]

Example 4 – How to Concatenate in Google Sheets with the IF Function

To understand how to use the IF function and get Google Sheets to CONCATENATE strings in the results you must first understand the IF function, so here’s the syntax for it:

IF[logical_expression, value_if_true, value_if_false]
  • logical_expression: An expression or reference to a cell containing an expression that represents alogical value, i.e. TRUE or FALSE.
  • value_if_true: The value the function returns if logical_expression is TRUE.
  • value_if_false: The value the function returns if logical_expression is FALSE, this is an optional arguement

So, to use CONCATENATE with the IF function, you can nest CONCATENATE as one of the value_if arguments.

Let’s look at an example where we only want to concatenate values if the value in the A column is less than 5:

Here are the steps to building the above formula:

  1. The logical_expression to test is whether the value in A1 is greater than 5 expressed as A1>5
  2. Then “NOPE” is the value_if_true
  3. The value_if_false is set to a CONCATENATE function to join cells B1, a command and space, and C1 through the expression CONCATENATE[B1,”, “,C1]
  4. We then clicked and dragged the formula down the column over the appropriate cells

Alternatives to CONCATENATE Function

How to Use the CONCAT Function In Google Sheets

Google Sheet CONCAT strings works exactly the same as CONCATENATE except you can only use two text strings instead of three or more. Any of the below examples that only use two arguments could also use the CONCAT function. CONCAT in Google Sheets is less powerful, so it may be best to stick with CONCATENATE.

Concatenate an Array of Cells with the JOIN Function

Suppose you have the same data set of names [as shown below]:, however, in this

However, in this case, you want to combine the names and list these in a single cell [each name in a new line]. You’ll need to use the JOIN function that uses the following syntax:

JOIN[delimiter, value_or_array1, [value_or_array2, ...]]
  • delimiter: The character or string to put in between each value.
  • value_or_array1: The first value
  • value_or_array2: Additional value[s] or array to be appended using delimiter.

The following formula can get this done:

=JOIN[char[10],A2:A6&" "&B2:B6]

Note that this is an array formula so use Control + Shift + Enter [hold the Control key and the Shift key and then press Enter]. When you hit Control + Shift + Enter, it will automatically append ArrayFormula to the formula.

The formula uses CHAR[10] which would add a line break to the result of the formula.

This technique can also be useful when you have addresses with different parts in different cells in a row [such as house number in one cell, the street name on another, the city name on another and so on, and you want to combine it to create address labels.

How to Concatenate More Than 2 Columns In Google Sheets with the & Operator

While the CONCATENATE formula can get a little messy with multiple arguements, you can use the & operator more times than you’d need. Just make sure you have the operator on both sides of the central arguments like in the below example.

Google Sheets Combine Text From Two Cells FAQ

How Do You CONCATENATE in Google Sheets?

You just have to:

  1. Type =CONCATENATE[ into an empty cell
  2. Enter the cell reference for the first value and a comma
  3. Enter a delimiter in double-quotes for example, if you wanted a space between you would type ” ” add a comma after.
  4. Enter the cell reference from the second text string
  5. Press Enter

A full CONCATENATE function could look something like this:

=CONCATENATE[A2," "B2]

How Do I Concatenate Two Columns In Google Sheets?

Use the above steps to concatenate one row in the columns, then use the fill handle or AUTOFILL to apply it to the entire column

Where Is the Concatenate Function in Sheets?

You could type =CONCATENATE into an empty cell or navigate to Insert > Function > All > CONCATENATE to find string concatenation in Google Sheets.

How Do You Concatenate 3 Columns in Google Sheets?

The CONCATENATE function in Google Sheets doesn’t limit to two columns, you can add 3 or more arguments to the function without any issues. So, to use the 3 columns with spaces in between it could be along the lines of:

=CONCATENATE[B1," ",C1," ",D1]

Why Is Concatenate Formula Not Working?

  • Make sure your cell references are correct
  • Make sure you have entered your delimiter between double quotes so ” ” for a space

What Is a Concatenation Example?

Concatenate basically means to join together the text strings in Google Sheets, like this:

Just remember, if you want to have something between the values, you need to add a delimiter between the arguments between double-quotes. In the above example, we use a space, like this ” “.

Keep Calm and Keep Concatenating

The above examples should keep you busy learning about these useful tools in Google Sheets, if you need to know more or have any questions, please let us know in the comments.

Now You Have an Understanding of the Concatenate Google Sheets Function, You May Also Like the Following Tutorials:

  • How to Quickly Merge Cells in Google Sheets.
  • The Ultimate Guide to Google Sheets VLOOKUP Function.
  • How to Use COUNTIF Function in Google Sheets.
  • Using IF Function in Google Sheets [with Examples].
  • The Easiest Google Sheets Add Text to Formula Guide [Step-by-Step]

Sumit

Spreadsheet Expert at Productivity Spot | Website | + posts

Google Sheets and Microsoft Excel Expert.

How do I concatenate two strings in Google Sheets?

The CONCAT function in Google Sheets allows you to join two or more strings together into a single string. The syntax for CONCAT is as follows: CONCAT[string1, string2, string3, ...] The function will return a string that is the concatenation of all of the strings you passed in as arguments.

How do you combine two words in a cell?

Combine data using the CONCAT function.
Select the cell where you want to put the combined data..
Type =CONCAT[..
Select the cell you want to combine first. Use commas to separate the cells you are combining and use quotation marks to add spaces, commas, or other text..
Close the formula with a parenthesis and press Enter..

How do I merge data in Google Sheets with the same name?

Combine duplicate rows in Google Sheets.
Start Combine Duplicate Rows..
Step 1: Select your data..
Step 2: Identify key columns..
Step 3: Choose columns with the values to merge..
Get the result..

Bài mới nhất

Chủ Đề