CONCATENATE Function in Excel

Rumman Ansari   Software Engineer     116 Share
☰ Table of Contents

Table of Content:


CONCATENATE Function in Excel

The Concatenation function in Excel is a text function that allows you to combine two or more text strings into one string.

The syntax of the CONCATENATE function is as follows:


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

where:

  • "text1" is the first text string that you want to concatenate.
  • "[text2]" is an optional argument that represents additional text strings that you want to concatenate.

Alternatively, you can use the "&" operator to concatenate text strings in Excel. The syntax for using the "&" operator is as follows:


text1 & [text2] & [text3] & ...

where:

  • "text1" is the first text string that you want to concatenate.
  • "[text2]" is an optional argument that represents additional text strings that you want to concatenate.

For example, if you have two text strings, say "Hello" and "world!", and you want to concatenate them, you can use the following formula using the CONCATENATE function:


=CONCATENATE("Hello", " ", "world!")

Or, you can use the following formula using the "&" operator:


="Hello" & " " & "world!"

In both cases, the result will be "Hello world!".

The Concatenation function can be very useful when you need to combine text strings from different cells or add a space or punctuation between two text strings.