Site icon Best Excel Tutorial

How to Concatenate Cells in Excel

In this article, I will guide you on how to concatenate multiple cells quickly using different methods with examples. You will also see that you shouldn’t merge cells.

Why Use Concatenation Instead of Merging Cells?

Merging cells is a way to combine the contents of two or more cells into a single cell. However, merging cells can make your worksheet difficult to read and work with. For example, if you merge cells that contain different data types, the merged cell will only display the first data type.

Concatenation, on the other hand, does not merge cells. Instead, it combines the contents of two or more cells into a single string. This means that you can still see the original data types in the concatenated cell.

How to Use the CONCATENATE Function

The CONCATENATE function is a built-in function in Excel that you can use to concatenate cells. The syntax for the CONCATENATE function is as follows:

=CONCATENATE(text1, [text2], …)

Where:

For example, the following formula would concatenate the contents of cells A1 and B1:

=CONCATENATE(A1,B1)

The results explain this.

We can also use strings in the formula itself as explained in the following example

=CONCATENATE(A1,B1, “I am 40 years old”)

We can also use formula calculated values like dates as explained in the following example:

=CONCATENATE(A1,B1, ” Today is “,TEXT(TODAY(), “dd-mmm-yy”))

Which gives the following result:

As you can see cells are concatenated now.

Exit mobile version