How to Use the CONCATENATE Function in Excel

Ben Stockton, contributor to the CareerFoundry blog

In Excel, the CONCATENATE function allows you to combine text from different cells into one cell. In this tutorial, we’ll show you, step by step, how to use the CONCATENATE function.

When you’re analyzing data with numbers in Excel, it’s easy enough to combine or manipulate it through multiplication or addition. Manipulating text in Excel can be a little harder to achieve, however. So for cells that contain text, you’ll need to try something different.

If you want to starting using Excel for analytics, try CareerFoundry’s free data short course.

That’s where the CONCATENATE function comes in. In this guide, we’ll cover:

  1. What is the CONCATENATE function and what is it used for?
  2. How does the CONCATENATE function work in Microsoft Excel?
  3. Things to consider before using CONCATENATE in Excel
  4. How to use CONCATENATE in an Excel formula: A step-by-step tutorial
  5. How to use CONCATENATE with special characters
  6. How to use CONCATENATE with date number formats
  7. How to handle line breaks using CONCATENATE

So: How does the CONCATENATE function work? Let’s take a look.

1. What is the CONCATENATE function and what is it used for?

If you want to combine data from two or more cells together, the best way to do it is to use the CONCATENATE function.

This lets you combine multiple cells together, whether they contain numbers or text, without affecting the original cells. There are several reasons why you may wish to do this.

If you have a list of addresses, for instance, you could use CONCATENATE to combine each section of the address (the name, the first line, the town, etc) into a single cell. This could then be copied or used elsewhere.

Using CONCATENATE or CONCAT in Excel

From Excel 2016 onwards, CONCATENATE has been “replaced” with the CONCAT function. That means that, if you’re using a later version of Excel, you can use either CONCATENATE or CONCAT. Older versions of Excel will need to stick to CONCATENATE, however.

CONCAT works exactly the same way as CONCATENATE, so any references to CONCATENATE below will work exactly the same for CONCAT. Both are interchangeable, and while CONCATENATE remains in place for compatibility reasons, it could be removed in future Office releases.

There aren’t any additional benefits to using CONCAT over CONCATENATE, so feel free to use either function. If CONCATENATE is removed, however, then you’ll need to switch to using CONCAT instead.

2. How does the CONCATENATE function work in Microsoft Excel?

The word “concatenate” is a technical term, but it simply means linking things together.

That’s exactly what CONCATENATE and CONCAT do in Excel, combining the contents of different cells and displaying them in a new cell.

An example of the CONCATENATE function in usage

While you could copy and paste the contents of each cell into a single cell yourself, or use Excel’s cell merge feature to do it automatically, using CONCATENATE or CONCAT means that your original data is left untouched.

Most data analysts would prefer to leave source data intact, manipulating it instead by using pivot tables or other Excel functions. The advantage of CONCATENATE or CONCAT is that you don’t need to alter the source data at all, but instead refer to it. If the original data is modified, this will update the data displayed in the combined cell.

CONCATENATE also allows you to combine different types of data, such as numbers, dates, and text strings, which wouldn’t typically be possible without it.

3. Things to consider before using CONCATENATE in Excel

While the CONCATENATE and CONCAT functions allow you to easily combine data from other sources, there are some limitations that you’ll need to be aware of.

These include, in no particular order:

  • You can use a maximum of 255 strings or 8192 characters in a CONCATENATE or CONCAT formula.
  • The formula must have at least one string for it to work.
  • If you want to use a range of cells, you can’t use an array (such as A1:A10). Each cell used in a CONCATENATE or CONCAT formula will have to be referenced manually (eg. A1, A2, A3, A4, etc.)
  • If you want to combine your data with special characters in a CONCATENATE or CONCAT formula, such as &, then you’ll need to wrap them in quotation marks (” & “), otherwise Excel will attempt to treat them as part of the syntax of the formula itself.
  • If any cell references are wrong, or if an illegal character is used, Excel will return the #VALUE! error message.
  • CONCATENATE and CONCAT will always return a text string, even if the data you’re using is a number or is a cell with the number cell type. This can impact how it can be used by other functions.
  • Because CONCATENATE and CONCAT can only handle text strings, you can use it with other functions (such as TEXT and TODAY) to correctly handle other data types, such as date numbers.
  • You can use the ampersand (&) for basic concatenation without using either CONCATENATE or CONCAT functions (eg. =A1&A2&A3).

4. How to use CONCATENATE in an Excel formula: A step-by-step tutorial

To use the CONCATENATE function in an Excel spreadsheet, here’s what you’ll need to do.

Step 1: Select an empty cell

Start by opening your Excel spreadsheet and selecting an empty cell. Once you’ve selected the cell, click on the formula bar at the top to begin typing in your new CONCAT or CONCATENATE formula.

A screen grab of the formula bar in Excel - this is where you enter your formula

Once the formula bar is active, you can begin to type in your formula.

Step 2: Create your CONCATENATE or CONCAT formula

Both CONCATENATE and CONCAT have a very simple syntax that you’ll need to follow. For example:

=CONCATENATE(text1, text 2, …)

=CONCAT(text1, text2, …)

The reference to text (eg. text1, text2) in the example syntax above refers to a text string that can be input manually, or to a cell reference containing the data you wish to use. As we’ve mentioned, there’s a hard limit of 255 strings that you can use here.

With your empty cell selected, begin to type your CONCATENATE or CONCAT formula by typing =CONCATENATE( or =CONCAT( in the formula bar.

A screen grab of the formula bar in Excel, with the CONCATENATE formula entered

You’ll then need to begin to select your data.

Step 3: Select your data

Both CONCATENATE and CONCAT can combine text strings from other cells (using cell references to identify them) or by using text strings within the formula itself. Each parameter (text 1, text2, etc) is then combined.

These follow the first open parentheses in sequence. For instance, =CONCATENATE(A1,A2,A3,A4) will merge the data from cells A1, A2, A3, and A4 together. Type this into the formula bar to create your formula, closing with a close parentheses, then hit the enter key to display the formula output.

A screen grab from Excel showing a basic CONCATENATE formula in action

You could also use the following CONCATENATE or CONCAT examples where cell references or text strings are used together:

=CONCATENATE(A1, B1, C1)

=CONCATENATE(“This is a text string”, “ which will be combined together”, “ to make a long sentence”)

=CONCAT(A1, B1, C1, “ which is very long”)

A screen grab from Excel demonstrating how to combine text strings using the CONCATENATE formula

As the examples above show, any text strings that you add manually will need to be wrapped in quotation marks. This is to ensure that the contents of a text string in your formula aren’t considered to be arguments in the formula itself.

Because CONCATENATE and CONCAT combine numbers, text, and other types of data together, the only way to do this is to treat the output as a text string. This means that, even if the values are numbers, the formula output will be considered as text, and you won’t be able to manipulate the number type.

5.  How to use CONCATENATE with special characters

Adding certain special characters to a CONCATENATE or CONCAT formula, such as ampersands and hyphens, can break it. To avoid this, you’ll need to make sure that special characters are wrapped in quotation marks.

To do this, open your Excel spreadsheet, select an empty cell, and use the formula bar to type a CONCATENATE or CONCAT formula similar to the following examples, replacing the cell references or text strings with your own data:

=CONCATENATE(A1, “ & “, A2)

=CONCAT(“This is a text string”, “ & “, “it is long”)

A screen grab from Excel showing how to use the CONCATENATE formula with special characters

You may want to do this to make the output from a CONCATENATE or CONCAT formula easier to follow. You’ll also want to do this to avoid words from text strings merging together, such as “This is a text string&it is too long”, rather than “This is a text string & it is too long”.

6. How to use CONCATENATE with date number formats

When you use CONCATENATE or CONCAT in Excel, the output is displayed as a text string. This can sometimes malform numbers with different number types, such as dates. To avoid this, you can use the TEXT function to ensure that the date number is converted by CONCATENATE or CONCAT and displayed correctly.

To do this, you could use the following formula, replacing the date values with your own:

=CONCATENATE(“The date today is “, TEXT(TODAY(), “dd/mm/yyyy”))

=CONCAT(“Jim’s birthday is on the “,TEXT(“10/11/2020”,”dd/mm/yy”))

A screen grab from Excel, showing how to use CONCATENATE to make sure dates are displayed correctly

By using TEXT with CONCATENATE or CONCAT, you can ensure that the number will be displayed in the date format that you require.

7. How to handle line breaks using CONCATENATE

The CONCATENATE and CONCAT function, used in a formula, will output on a single line. This isn’t ideal for every scenario, especially if you’re trying to combine certain types of data, such as a postal address.

To get around this limitation, you can use CONCATENATE or CONCAT with the CHAR function, which will be able to output the ASCII code for a line break (10). To do this, you’ll need to use the following formula, replacing the cell references with your own:

=CONCATENATE(A1, CHAR(10), C1)

=CONCAT(A1, CHAR(10), B1)

A screen grab from Excel, showing how to handle line breaks with the CONCATENATE function

Previously, you’d need to use CHAR(13) if you were using Excel on Mac for this to work. However, in recently released versions of Excel on Mac, you’ll be able to use CHAR(10) like Windows users.

This will also work for other types of special characters, such as slashes or ampersands, but most users will find it’s easier to wrap these types of characters in quotation marks instead.

Final thoughts

The CONCATENATE function in Excel is considered an essential tool for data analysts to have in their arsenal, allowing you to quickly combine different types of data.

It isn’t the only way you can do this, however, as the newer CONCAT function offers the same functionality in the latest versions of Excel.

If you’re keen to continue exploring, why not check out the XLOOKUP function next, or the AVERAGE function? Alternatively, here’s a round-up of  10 Excel formulas that every data analyst should know.

If you’re new to data analytics, you can try a free introductory data analytics short course. And, for more tutorials and resources, check out the following:

What You Should Do Now

  1. Get a hands-on introduction to data analytics and carry out your first analysis with our free, self-paced Data Analytics Short Course.

  2. Take part in one of our FREE live online data analytics events with industry experts, and read about Azadeh’s journey from school teacher to data analyst.

  3. Become a qualified data analyst in just 4-8 months—complete with a job guarantee.

  4. This month, we’re offering a partial scholarship worth up to $1,365 off on all of our career-change programs to the first 100 students who apply 🎉 Book your application call and secure your spot now!

What is CareerFoundry?

CareerFoundry is an online school for people looking to switch to a rewarding career in tech. Select a program, get paired with an expert mentor and tutor, and become a job-ready designer, developer, or analyst from scratch, or your money back.

Learn more about our programs
blog-footer-image