Excel CONCATENATE Function and - & - To Combine Strings, Cells, Columns
Excel CONCATENATE Function and - & - To Combine Strings, Cells, Columns
com
In this tutorial, you will learn various ways to concatenate text strings, cells, ranges, columns and rows in Excel using the
CONCATENATE function and "&" operator.
In your Excel workbooks, the data is not always structured according to your needs. Often you may want to split the
content of one cell into individual cells, or do the opposite - combine data from two or more columns into a single column.
Common examples that require concatenation in Excel are joining names and address parts, combining text with a
formula-driven value, displaying dates and times in the desired format, to name a few.
In this tutorial, we are going to explore various techniques of Excel string concatenation so that you can choose the
method best suited for your worksheets.
Merge cells
When you merge cells, you "physically" merge two or more cells into a single cell. As a result, you have one larger cell that
is displayed across multiple rows and/or columns in your worksheet.
When you concatenate cells in Excel, you combine only the contents of those cells. In other words, concatenation in
Excel is the process of joining two or more values together. This method is often used to combine a few pieces of text that
reside in different cells (technically, these are called text strings or simply strings) or insert a formula-calculated value in the
middle of some text.
https://www.ablebits.com/office-addins-blog/2015/07/15/excel-concatenate-strings-cells-columns/ 1/13
01/01/22, 23:21 Excel CONCATENATE function and "&" to combine strings, cells, columns - Ablebits.com
The following screenshot demonstrates the difference between these two methods:
Merging cells in Excel is the subject of our next article, and in this tutorial we will tackle two essential ways to concatenate
strings in Excel - by using the CONCATENATE function and the Excel & operator.
CONCATENATE(text1, [text2], …)
The CONCATENATE function is supported in all versions of Excel for Microsoft 365, Excel 2019 - Excel 2007.
Note. In Excel 365 - Excel 2019, the CONCAT function is also available, which is a modern successor of CONCATENATE
with exactly the same syntax. Although the CONCATENATE function is kept for backward compatibility, Microsoft does
not give any promises that it will be supported in future versions of Excel.
Below you will find a few examples of using the CONCATENATE function in Excel.
=CONCATENATE(A1, B1)
Please note that the values will be knit together without any delimiter, as in row 2 in the screenshot below.
To separate the values with a space, enter " " in the second argument, as in row 3 in the screenshot below.
To separate the concatenated values with other delimiters such as a comma, space or slash, please see Excel
CONCATENATE formulas with special characters.
https://www.ablebits.com/office-addins-blog/2015/07/15/excel-concatenate-strings-cells-columns/ 2/13
01/01/22, 23:21 Excel CONCATENATE function and "&" to combine strings, cells, columns - Ablebits.com
The above formula informs the user that a certain project is completed, as in row 2 in the screenshot below. Please notice
that we add a space before the word " completed" to separate the concatenated text strings.
Naturally, you can add a text string in the beginning or in the middle of your Concatenate formula as well:
A space (" ") is added in between the combined values, so that the result displays as "Project 1" rather than "Project1".
For example, you can use the following formula to return the current date:
Tip. If you would like to delete the source data without affecting the resulting text strings, use the "Paste special -
values only" option to convert formulas to their values. The detailed instructions can be found in How to replace
formulas with values in Excel.
In a single CONCATENATE formula, you can concatenate up to 255 strings, a total of 8,192 characters.
The result of the CONCATENATE function is always a text string, even when all of the source values are numbers.
Excel CONCATENATE does not recognize arrays. Each cell reference must be listed separately. For example, you should
write =CONCATENATE(A1, A2, A3) instead of =CONCATENATE(A1:A3).
If at least one of the CONCATENATE function's arguments is invalid, the formula returns a #VALUE! error.
https://www.ablebits.com/office-addins-blog/2015/07/15/excel-concatenate-strings-cells-columns/ 3/13
01/01/22, 23:21 Excel CONCATENATE function and "&" to combine strings, cells, columns - Ablebits.com
In Microsoft Excel, & operator is another way to concatenate cells. This method come in very handy in many scenarios
because typing the ampersand sign (&) is much quicker than typing the word "concatenate" :)
Similarly to the CONCATENATE function, you can use "&" in Excel to combine different text strings, cell values and results
returned by other functions.
=A1&B1
=A1&" "&B1
As demonstrated in the screenshot below, the CONCATENATE function and "&" operator return identical results:
The only essential difference between CONCATENATE and "&" operator is the 255 strings limit of the Excel CONCATENATE
function and no such limitations when using the ampersand. Other than that, there is no difference between these two
concatenation methods, nor is there any speed difference between the CONCATENATE and "&" formulas.
And since 255 is a really big number and in real-life tasks someone will hardly ever need to combine that many strings, the
difference boils down to the comfort and ease of use. Some users find CONCATENATE formulas easier to read, I personally
prefer using the "&" method. So, simply stick to the concatenation technique that you feel more comfortable with.
or
or
or
The following screenshot demonstrates how the results may look like:
A problem is that you cannot simply type a line break in the formula like a usual character, and therefore a special CHAR
function is needed to supply the corresponding ASCII code to the concatenation formula:
On Windows, use CHAR(10) where 10 is the ASCII code for Line feed.
https://www.ablebits.com/office-addins-blog/2015/07/15/excel-concatenate-strings-cells-columns/ 5/13
01/01/22, 23:21 Excel CONCATENATE function and "&" to combine strings, cells, columns - Ablebits.com
On the Mac system, use CHAR(13) where 13 is the ASCII code for Carriage return.
In this example, we have the address pieces in columns A through F, and we are putting them together in column G by
using the concatenation operator "&". The merged values are separated with a comma (", "), space (" ") and a line break
CHAR(10):
=A2 & " " & B2 & CHAR(10) & C2 & CHAR(10) & D2 & ", " & E2 & " " & F2
Note. When using line breaks to separate the concatenated values, you must have the "Wrap text" option enabled for
the result to display correctly. To do this, press Ctrl + 1 to open the Format Cells dialog, switch to the Alignment tab and
check the Wrap text box.
In the same manner, you can separate concatenated strings with other characters such as:
Though, an easier way to include printable characters in the concatenation formula is to simply type them in double
quotes as we did in the previous example.
Either way, all four of the below formulas yield identical results:
https://www.ablebits.com/office-addins-blog/2015/07/15/excel-concatenate-strings-cells-columns/ 6/13
01/01/22, 23:21 Excel CONCATENATE function and "&" to combine strings, cells, columns - Ablebits.com
For example, to concatenate two columns (column A and B) separating the values with a space, you enter the following
formula in cell C2, and then copy it down to other cells. When you are dragging the fill handle to copy the formula, the
mouse pointer changes to a cross, as shown in the screenshot below:
Tip. A quick way to copy the formula down to other cells in the column is to select the cell with the formula and
double-click the fill handle.
Please note that Microsoft Excel determines how far to copy cells after the fill handle double click based on the cells
referred to by your formula. If there happen to be empty cells in your table, say cell A6 and B6 were blank in this
example, the formula would be copied up to row 5 only. In this case, you would need to drag the fill handle down
manually to concatenate the entire columns.
An alternative way to concatenate columns in Excel is to use the corresponding option of the Merge Cells add-in.
To concatenate several cells, say A1 to A4, you need either of the following formulas:
or
https://www.ablebits.com/office-addins-blog/2015/07/15/excel-concatenate-strings-cells-columns/ 7/13
01/01/22, 23:21 Excel CONCATENATE function and "&" to combine strings, cells, columns - Ablebits.com
When joining a fairly small range, it's no big deal to enter all the references in the formula bar. A large range would be
tedious to add, typing each cell reference manually. Below you will find 3 methods of quick range concatenation in Excel.
3. Press and hold Ctrl and click on each cell you want to concatenate.
4. Release the Ctrl button, type the closing parenthesis in the formula bar and press Enter .
Note. When using this method you must click each individual cell. Selecting a range with the mouse would add an
array to the formula, which the CONCATENATE function does not accept.
1. In the cell where you want to output the concatenated range, enter the TRANSPOSE formula, for example:
=TRANSPOSE(A1:A10)
2. In the formula bar, press F9 to replace the formula with calculated values. As the result, you will have an array of
numbers to be concatenated.
https://www.ablebits.com/office-addins-blog/2015/07/15/excel-concatenate-strings-cells-columns/ 8/13
01/01/22, 23:21 Excel CONCATENATE function and "&" to combine strings, cells, columns - Ablebits.com
4. Type =CONCATENATE( before the first value, then type the closing parenthesis after the last value, and press Enter.
Note. Whichever method you use, the concatenated value in C1 is a text string (notice its left-alignment in the cell),
although each of the original values is a number. This is because the CONCATENATE function always returns a text
string regardless of the source data type.
In the first argument (value), you supply a number or date to be converted to text, or a reference to the cell containing a
numeric value.
In the second argument (format_text), you enter the desired format using the codes that the TEXT function can
understand.
We have already discussed one such formula in the beginning of this tutorial that concatenates text and date.
https://www.ablebits.com/office-addins-blog/2015/07/15/excel-concatenate-strings-cells-columns/ 9/13
01/01/22, 23:21 Excel CONCATENATE function and "&" to combine strings, cells, columns - Ablebits.com
I will remind you that when combining a text string and date, you have to use the TEXT function to display the date in the
desired format. For example:
or
A few more formula examples that concatenate a text value and number follow below:
=A2 & " " & TEXT(B2, "$#,#0.00") - display the number with 2 decimal places and the $ sign.
=A2 & " " & TEXT(B2, "0.#") - does not display extra zeros and the $ sign.
=A2 & " " & TEXT(B2, "# ?/???") - display the number as a fraction.
You can find the detailed steps illustrated with formula examples and screenshots in the How to split cells in Excel tutorial.
Concatenate the values of several cells into a single cell and separate them with any delimiter of your choosing.
The Merge Cells tool works with all Excel versions from 2003 to 2016 and can combine all data types including text strings,
numbers, dates and special symbols. Its two key advantages are simplicity and speed - any concatenation is done in a
couple of clicks. And now, let me show it to you in action.
https://www.ablebits.com/office-addins-blog/2015/07/15/excel-concatenate-strings-cells-columns/ 10/13
01/01/22, 23:21 Excel CONCATENATE function and "&" to combine strings, cells, columns - Ablebits.com
Select the delimiter you want under "Separate values with", it's a comma and a space in this example;
Choose where you want to place the result, and most importantly
Uncheck the "Merge all areas in the selection" option. It is this option that determines whether the cells are merged or
the cells' values are concatenated.
https://www.ablebits.com/office-addins-blog/2015/07/15/excel-concatenate-strings-cells-columns/ 11/13
01/01/22, 23:21 Excel CONCATENATE function and "&" to combine strings, cells, columns - Ablebits.com
https://www.ablebits.com/office-addins-blog/2015/07/15/excel-concatenate-strings-cells-columns/ 12/13
01/01/22, 23:21 Excel CONCATENATE function and "&" to combine strings, cells, columns - Ablebits.com
To check how the Merge Cells add-in will cope with your data sets, you are welcome to use the below link to download a
fully functional trial version of our Ultimate Suite for Excel.
Available downloads
Concatenation formula examples (.xlsx file)
Copyright © 2003 - 2021 4Bits Ltd. All rights reserved. Privacy policy Terms of use Contact us
Microsoft and the Office logos are trademarks or registered trademarks of Microsoft Corporation. Google Chrome is a trademark of Google LLC.
https://www.ablebits.com/office-addins-blog/2015/07/15/excel-concatenate-strings-cells-columns/ 13/13