Mastering Excel Concatenation with Delimiters: A Comprehensive Guide
In the vast world of data management, Excel stands as a powerhouse, offering a plethora of functions to streamline tasks. One such function is CONCATENATE, which allows you to combine text strings from multiple cells into a single cell. But what if you want to separate these combined strings with a specific character, like a comma, space, or even a line break? That's where delimiters come into play. Let's delve into the world of Excel concatenation with delimiters.
Understanding Excel Concatenation
Before we dive into delimiters, let's ensure we have a solid grasp on Excel's CONCATENATE function. The basic syntax is:
CONCATENATE(text1, [text2], ...)
Here, text1 is the primary text string, and text2, etc., are optional additional text strings you want to combine. If you're using Excel 2016 or later, you can also use the CONCAT function, which is a shorter version of CONCATENATE.

Introducing Delimiters: The Separators
Delimiters are characters that separate the concatenated text strings. They can be any character, symbol, or even a space. Here are a few examples:
- ’s (apostrophe) or ‘ (single quote): For combining text strings with a space in between.
- , (comma): For separating text strings with a comma.
- (line break): For creating a new line after each text string.
Concatenating with Delimiters: The Formula
The formula to concatenate text strings with a delimiter is:
CONCATENATE(text1, delimiter, text2, [delimiter, text3], ...)
Or, if you're using CONCAT:

CONCAT(text1, delimiter, text2, [delimiter, text3], ...)
Here's an example. Suppose you have the following data in cells A1 to A3:
| Name | City | Country |
|---|---|---|
| John | New York | USA |
| Jane | London | UK |
| Bob | Sydney | Australia |
To concatenate these into a single cell with a comma and a space as the delimiter, you would use:
CONCAT(A1, ", ", B1, ", ", C1)
Dragging this formula down to cell A4 would give you:

- John, New York, USA
- Jane, London, UK
- Bob, Sydney, Australia
Concatenating with Line Breaks
To concatenate text strings with line breaks, use the character sequence as the delimiter:
CONCAT(A1, " ", B1, " ", C1)
This would result in:
- John
New York
USA - Jane
London
UK - Bob
Sydney
Australia
Concatenating with Text from Other Cells
You can also use text from other cells as the delimiter. For instance, if you want to concatenate text strings with a comma and a space, and the delimiter is in cell D1, you would use:
CONCAT(A1, D1 ’s ‘, B1, D1 ’s ‘, C1)
This would result in:
- John's, New York's, USA
Remember to replace 'D1' with the actual cell reference containing your delimiter.
Conclusion
Mastering Excel concatenation with delimiters opens up a world of possibilities for data manipulation and presentation. Whether you're separating text strings with commas, spaces, or line breaks, or using text from other cells as delimiters, the CONCATENATE and CONCAT functions, along with delimiters, are powerful tools in your Excel arsenal.






















