Excel Concatenate Function (Text, Numbers, Dates, “&” )

This tutorial will explain excel concatenate functions along with how to utilize concatenation in numbers, text string dates and “&” operator. We will also include formulas combine with columns, single cells, and a range of cells.

More than that, we’ll explore different techniques in excel concatenation, where you can choose methods suited to your worksheets.

In working on our worksheets, we usually have data that is not structured according to our needs. As a result, we split the content or combine cells and columns into one column.

What is Concatenate in Excel

The Concatenate function in excel joins and combines the word. Apparently, it is under the category of Text functions. So this function is often used to combine text from different cells.

Furthermore, financial analysts are the ones who encounter this function when they deal with financial analysis. Whereas the data is not always structured for analysis, and we often need to combine data from one or more cells into one cell or split data from one cell into different cells.

Basically, there are two ways that help you combine data in your Excel workbook.

  1. Concatenate Cell Values
  2. Merge Cells
Merge Cell and Excel Concatenate Cells Function
Merge Cell and Concatenate Cells

So, when concatenating cell values, you only combine the contents of the cells. Simply, it’s the process that joins two or more cell values together.

However, merging cells physically joins or combines two or more cells into a single cell. Hence you have one larger cell that is displayed across multiple rows or columns.

To clearly understand, we will examine syntax and argument of this function.

Syntax 

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

Arguments 

  • text1 – The first text arguments value to join together.
  • text2 – The second text value to join together.
  • text3 – [optional] The third text value to join together.

Return value 

Combined text together.

How to Concatenate in Excel

Here are the simplest ways to use Concat function in your worksheet:

  1. Select the cell where you want the combined data to be placed.
  2. Enter the formula =CONCAT(.
  3. Select the first cell you want to combine.
  4. Add commas, spaces, or text. Always put quotation marks to separate the cells you are joining.
  5. Enter the formula within parentheses. =CONCAT(A2, ” Timothy”).
  6. Press enter to see the output.

Concatenating the Values of Several Cells

The simple formulas to CONCATENATE the values of several cells are as follows:

For instance, we combine the firstname and last names of students (cells a2 and b2):

  • =CONCATENATE(A2,B2) 

The values will be merged without any spaces. Use “” in separating values.

  • =CONCATENATE(A2, “ “, B2)
Concatenating the Values of Several Cells

Concatenating a Text String and a Cell Value

The Excel CONCATENATE function is not only limited to combining cell values.

Apart from this, use the function to join cell value and string. For example:

  • =CONCATENATE(A2, ” “, B2, ” SIMPLILEARN”)
Concatenating a Text String and a Cell Value

Concatenate Cells with Comma, Space and Other Characters

In working your worksheet, it might necessary to join values which may add a space, commas, or various punctuation marks. To do that, follow the syntax given below.

Two cells with space concatenate:

  • =CONCATENATE(A2, “ “ ,B2)
Concatenate Cells with Space, Comma,

Concatenating two cells with a comma:

  • =CONCATENATE(A3, “, ”, B3) 
Concatenate Cells with Space, Comma, and Other Characters

Concatenating two cells with space:

  • =CONCATENATE(A4, “ – “, B4)
Concatenate Cells with Other Characters

“&” operator to concatenate strings in Excel

The ampersand sign (&) in Microsoft Excel is another way to concatenate cells. Moreover it is an flexible operator in every certainties, besides using ampersand character is much easier to type than word concatenate.

For example, to concatenate two cell values in column cell A1 and b2 with a space in-between, the formula is:

& operator to concatenate strings in Excel
& operator to concatenate strings in Excel

Combine text and numbers keeping formatting

This time there are instances where you want to keep the formatting of numeric values when concatenating a text string, percentage or date number. So this can be accomplished by using or applying TEXT function inside the format which can be put in the formula.

The following are example formulas that joined text and numbers:

Formula
Result
Number with 2 decimal places:
=I2 & ” ” & TEXT(H2, “#,#0.00”)
Number with 2 decimal places
Number without insignificant zeros:
=I3 & ” ” & TEXT(H2, “0.00%”)
Number without insignificant zeros
Fractional number:
=A2 & ” ” & TEXT(H2, “# ?/???”)
Fractional number
Concatenating text and percentage.
Percent with two decimal places:
=A4 & ” ” & TEXT(H2, “0.00%”)
text and percentage,
Rounded whole percent:
=A2& ” ” & TEXT(H2, “0%”)
Rounded whole percent
Concatenating a Text String and Formula Calculated Value
=CONCATENATE(“Today is “,TEXT(TODAY(), “dd-mmm-yyyy”))
Concatenate Date

What is Excel Concatenate Opposite

Splitting one cell’s contents into multiple cells is the opposite of concatenate function. This can be done in a few different ways:

  • Flash Fill in Excel 2016 and higher
  • TEXTSPLIT function in Excel 365
  • Text to Columns feature
  • Split cells custom formula (RIGHT, MID, LEFT, etc.)

Conclusion

So this article has discussed the Excel concatenation together with the following:

  • Concatenate function joining 30 characters or text jointly.
  • Text items can be text strings, numbers, or cell references that refer to one cell.
  • Text items can be cell references, text strings, or numbers that direct on the other cell.
  • The alternative of concatenation is the ampersand character(&). Hence the output is still the same, however using ampersand is more flexible, short and easy-to-read formula.
  • Numbers are converted to text when joined. See the TEXT function if you need to specify a number format for a number being joined.

Leave a Comment