0% found this document useful (0 votes)
39 views

The Concatenate Function - Notes

This document explains the Excel CONCATENATE function which joins multiple strings together. The CONCATENATE function syntax includes the text strings to concatenate as parameters separated by commas. It can concatenate up to 255 strings with a maximum length of 8,192 characters. Examples demonstrate concatenating cell values and text, as well as adding spaces or quotation marks within the concatenated text.

Uploaded by

andre
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
39 views

The Concatenate Function - Notes

This document explains the Excel CONCATENATE function which joins multiple strings together. The CONCATENATE function syntax includes the text strings to concatenate as parameters separated by commas. It can concatenate up to 255 strings with a maximum length of 8,192 characters. Examples demonstrate concatenating cell values and text, as well as adding spaces or quotation marks within the concatenated text.

Uploaded by

andre
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

MS Excel: CONCATENATE Function (WS)

This Excel tutorial explains how to use the Excel CONCATENATE function with syntax and
examples.

Description
The Microsoft Excel CONCATENATE function allows you to join 2 or more strings together.

Syntax
The syntax for the CONCATENATE function in Microsoft Excel is:
CONCATENATE( text1, text2, ... text_n )

Parameters or Arguments
text1, text2, ... text_n
The strings that you wish to join together. There can be up to 255 strings that are joined
together, up to a maximum of 8,192 characters.

Applies To
The CONCATENATE function can be used in the following versions of Microsoft Excel:
 Excel 2013, Excel 2011 for Mac, Excel 2010, Excel 2007, Excel 2003, Excel XP, Excel 2000

Type of Excel Function


The CONCATENATE function can be used in Microsoft Excel as the following type of function:
 Worksheet function (WS)

Example (as Worksheet Function)


Let's look at some Excel CONCATENATE function examples and explore how to use the
CONCATENATE function as a worksheet function in Microsoft Excel:
Based on the Excel spreadsheet above, the following CONCATENATE examples would return:
=CONCATENATE(A1, A2)
Result: "Alphabet"

=CONCATENATE("Tech on the ", "Net")


Result: "Tech on the Net"

=CONCATENATE(A1, "bet soup")


Result: "Alphabet soup"

Concatenate Space Characters

When you are concatenating values together, you might want to add space characters to
separate your concatenated values. Otherwise, you might get a long string with the
concatenated values running together. This makes it very difficult to read the results.

Let's look at an easy example.

Based on the Excel spreadsheet above, we can concatenate a space character within the
CONCATENATE function as follows:
=CONCATENATE(A1, " ", A2)
Result: "TechOnTheNet.com resource"

In this example, we have used the second parameter within the CONCATENATE function to add
a space character between the values in cell A1 and cell A2. This will prevent our values from
being squished together.
Instead our result would appear as follows:
"TechOnTheNet.com resource"
Here, we have concatenated the values from the two cells (A1 and A2), separated by a space
character.

Concatenate Quotation Marks

Since the parameters within the CONCATENATE function are separated by quotation marks
when they are string values, it isn't straight forward how to add a quotation mark character
within the result of the CONCATENATE function.
Let's start with a fairly easy example that shows how to add a quotation mark to the resulting
string using the CONCATENATE function.

Based on the Excel spreadsheet above, we can concatenate a quotation mark as follows:
=CONCATENATE("One ", """", " Two")
Result: One " Two

In this example, we have used the second parameter within the CONCATENATE function to add
a quotation mark into the middle of the resulting string.
Since our parameters are enclosed in quotation marks, we use 2 additional quotation marks
within the surrounding quotation marks to represent a quotation mark in our result as follows:
""""
Then when you put the whole function call together:
=CONCATENATE("One ", """", " Two")
You will get the following result:
One " Two
……………………………………………………………………………………………………………………………………………………
WATCH YOU-TUBE VIDEO ON CONCATENATE FUNCTION, COP AND PASTE LINK BELOW:
https://www.youtube.com/watch?v=8ZxFgH7hLeM

You might also like