How to Concatenate Columns and Strings in Excel

Photo of author

By Victor Ashiedu

Published

Do you want to join data in Excel? You need the Concatenate function and in this guide, I’ll show you how to do that as well as use the ampersand operator.

What is Concatenate in Excel?

Concatenate is joining two strings into one continuous string. You can join two strings using the CONCATENATE function or the “&” (ampersand) operator.

This guide shows how to use these two methods with examples.

Option 1: Concatenate Columns

concatenate excel

The image above shows two columns, A and B. Column C shows how to concatenate the columns using CONCATENATE function. Column D shows how the columns are combined using the “&” (ampersand) Operator.

In this section, I will demonstrate how to combine column A and column B using CONCATENATE or “&” (ampersand) Operator.

How to Concatenate with the CONCATENATE Function

The syntax of CONCATENATE Function is:

CONCATENATE(text1, [text2], [text3])

text1, text2 and text3 are the different strings you wish to combine.

Refer to the image above. In this example, I want to combine cells A and B to form the sentence “The Number of cellA are cellB”. The formula for cell C4 is shown below:

=CONCATENATE("The Number of", " ",A4, " ", "are"," ", B4)

Concatenate in Excel using the CONCATENATE function is simply adding the strings you wish to combine within the bracket “()”. Each string is then followed by a comma (,).

To add an empty space, use ” ” – quote marks with space between them.

How to Concatenate with the “&” (ampersand) Operator

To concatenate with “&” (ampersand) Operator:

On the cell you want to combine the columns, enter the equal to sign (=), followed by “&”. Unlike in CONCATENATE, with ampersand (&) each value is separated by & instead of a comma (,).

Here is the formula for cell D4:

="The Number of" & " "  & A4 & " " & "are" &" " &B4

To add an empty space use double quotes with a space.

Option 2: Adding Space, Comma, and Other Characters

In the last section I demonstrated how to concatenate two columns. In this section, I will demo how to add commas, spaces and other special characters.

If you have read this guide to this point, you will notice that when I included a text string or space, I used double quotes around them.

To add an empty space, simply include two quotes with a space, ” “. You can also use the same method to include a comma or any other character.

As an example, to combine the two texts below separated by a comma and a stop:

This is how you add, followed by this.

Use the CONCATENATE formula below:

=CONCATENATE("This is how you add",",", " ", "followed by this",".")

You can achieve the same result using the & operator formula shown below:

="This is how you add" & "," & " " & " " & "followed by this" & "."

Here are the results in Excel:

combine strings with CONCATENATE Function
combine strings with & operator

More Examples of Excel Concatenate

In the last section of this guide I will show one more example.

Refer to the image above. The worksheet contains products and their prices. In the example, I combined columns A and B in C with the formula below:

=CONCATENATE(A3, " ", TEXT(B3, "$#,#0.00"))

The cells are combined with CONCATENATE. But the second cell, B3 is formatted with the TEXT function. TEXT formats the numbers in column B to include the $ sign. It also adds 2 decimal places to the numbers.

Conclusion

Concatenate in Excel is very useful if you want to join 2 strings into 1. In this guide, I have demonstrated different ways to do this.

I hope you found this article helpful. If you did, please feel free to share your thoughts by utilizing the “Leave a Reply” form located at the bottom of this page.

You could also use the “Was this page helpful?” buttons below to give us your feedback.

About the Author

Photo of author

Victor Ashiedu

Victor is the founder of InfoPress Media, publishers of Ilifeguides and Itechguides. With 20+ years of experience in IT infrastructure, his expertise spans Windows, Linux, and DevOps. Explore his contributions on Itechguides.com for insightful how-to guides and product reviews.

Related Articles

Get in Touch

We're committed to writing accurate content that informs and educates. To learn more, read our Content Writing Policy, Content Review Policy, Anti-plagiarism Policy, and About Us.

However, if this content does not meet your expectations, kindly reach out to us through one of the following means:

  1. Respond to "Was this page helpful?" above
  2. Leave a comment with the "Leave a Comment" form below
  3. Email us at [email protected] or via the Contact Us page.

Leave a comment