Skip to main content
 

How To Combine Multiple Cells Into A Cell With Space, Commas or other separators In Excel?

Author: Sun Last Modified: 2024-08-23

When you combine the cells from multiple columns or rows into a single cell, the combined data may be separated by nothing. But if you want to separate them with specified marks, such as space, commas, semicolon or others, how can you do? This tutorial will introduce some methods for you.

a screenshot of combining multiple cells with a separator into rows and columns


Concatenate row or column of cells into one cell with space, comma or other separators by using formulas

In Excel, you can use the below formulas to combine a row of cells or a column of cells into a single cell.


Method A: Use "&" operator to combine cells

In Excel, you can use the "&" operator to combine different text strings or cell values.

Please enter the below formula to concatenate the cells in multiple columns: (separate the combined results with space, you can replace the blank with other separators as you need.)

=A2&" "&B2&" "&C2

And then, drag the fill handle down to the cells that you want to apply this formula, and the data from different columns have been merged into one cell, see screenshot:

a screenshot of using

  • Tips:
  • In the above formula, you can replace the blanks between the & operators with other separators, such as =A2&"-"&B2&"-"&C2
  • If you need to combine the cell values from multiple rows, you just need to change the cell reference as this: =A2&" "&A3&" "&A4&" "&A5&" "&A6&" "&A7

Method B: Use Concatenate function to combine cells

The Concatenate function in Excel is also used to join multiple text strings or cell values into one cell.

Please enter or copy the below formula into a blank cell:

=CONCATENATE(A2, "-", B2, "-", C2)

And then, drag the fill handle down to the cells that you want to apply this formula, you will get the following result:

a screenshot of using Concatenate function to combine cells into one cell

  • Tips:
  • In the above formula, you can replace the “-” character with other separators, such as =CONCATENATE(A2, ";", B2, ";", C2)
  • If you need to combine the cell values from multiple rows, you just need to change the cell reference as this: =CONCATENATE(A2, "-", A3, "-", A4, "-", A5, "-", A6, "-", A7)

Method C: Use Textjoin function to combine cells

If you have Excel 365 and later versions, there is new function-Textjoin, this function also can help you to combine multiple cells into one cell.

Enter or copy the following formula into a blank cell:

=TEXTJOIN(",",TRUE,A2:C2)

Then, drag the fill handle to apply this formula to other cells, see screenshot:

a screenshot of using TEXTJOIN function to combine cells into one cell

  • Tips:
  • In the above formula, you can replace the “,” character with other separators, such as =TEXTJOIN("/",TRUE,A2:C2)
  • To combine the cell values from multiple rows, you just need to change the cell reference as this: =TEXTJOIN(",",TRUE,A2:A7)
  • This TEXTJOIN also can combine a range of cells into a single cell with a delimiter as this: =TEXTJOIN(",",TRUE,A2:C7)

Concatenate row, column or range of cells into one cell with a specified separator

Kutools for Excel supports a powerful feature-Combine which can help you to merge all data based on rows, columns or a range of cells into one record without losing data. Please see the below demo.    Click to download Kutools for Excel!


Concatenate row or column of cells into one cell with space, comma or other separators by the User Defined Function

In Excel, you can also create a User Defined Function to combine cells of row or column into a single cell with spaces or specified marks.

1. Hold ALT + F11 keys on the keyboard to open a Microsoft Visual Basic for Application window.

2. Click Insert > Module, and copy the VBA into the module.

VBA: Combine cells based on row or column into one with specific separator:

Function Combine(WorkRng As Range, Optional Sign As String = "~") As String
Dim Rng As Range
Dim OutStr As String
For Each Rng In WorkRng
    If Rng.Text <> " " Then
        OutStr = OutStr & Rng.Text & Sign
    End If
Next
Combine = Left(OutStr, Len(OutStr) - 1)
End Function

Tip: In the above script "Function Combine(WorkRng As Range, Optional Sign As String = "~") As String", the separator "~" is specified to separate the combined result, you can change it to meet your need.

3. Then please type formula =Combine(A2:C2) in a blank cell, and then drag the fill handle over the range that you want to apply this formula, all of the cells in the row will be combined into a cell with dashes. See screenshot:

a screenshot of using the user-defined function to combine multiple cells into one cell

Tips: With above User Defined Function, you can also combine cell values based on column, you just need to enter this formula =Combine(A2:A7) to get the merged data as you need.


Concatenate row or column of cells into one cell with line break by using formulas

Sometimes, you may want to use the line break to separate the concatenated text string, normally, the CHAR(10) will return the line break character. Here, you can use the below methods to solve this task:


Method A: Use Concatenate function to combine cells with line break

Here, you can combine the concatenate function with the Char(10) character together to get the merged result which is separated by line break.

1. Please type or copy the below formula:

=CONCATENATE(A2,CHAR(10),B2,CHAR(10),C2)

Then, drag the fill handle down to the cells you want to apply this formula, and you will get the following result:

a screenshot of using formula to combine cells into one cell with line break

2. Then, you should click Home > Wrap Text to format the cells, and then, you will get the result as you need:

a screenshot of selecting Wrap Text to display the combined cell in multiple lines

Tips: To combine the cell values from multiple rows, you just need to change the cell reference as this: =CONCATENATE(A2,CHAR(10),A3,CHAR(10),A4,CHAR(10),A5,CHAR(10),A6,CHAR(10),A7)


Method B: Use Textjoin function to combine cells with line break (Excel 365 and later versions)

May be the above formula is somewhat difficult if there are multiple cells needed to be combined, so, the Textjoin function can deal with this task quickly and easily.

Please enter or copy the below formula into a blank cell:

=TEXTJOIN(CHAR(10),TRUE,A2:C2)

After getting the combined results, please remember to format the formula cells to Wrap Text, see screenshot:

a screenshot of using Textjoin function to combine cells with line break then selecting Wrap Text to display the results in multiple lines

Tips: To combine the cell values from multiple rows, you just need to change the cell reference as this: =TEXTJOIN(CHAR(10),TRUE,A2:A7)


Concatenate row, column or range of cells into one cell with specified separator by using a wonderful feature

If you are annoying with the above formulas and code, here, I can recommend a useful tool- Kutools for Excel, with its Combine feature, you can quickly combine cell values by row, column or a range into one single cell.

Tips:To apply this Combine feature, firstly, you should download the Kutools for Excel, and then apply the feature quickly and easily.

After installing Kutools for Excel, please do as this:

1. Select a range cell values that you want to combine into a cell.

2. Please apply this function by clicking Kutools > Merge & SplitCombine Rows, Columns or Cells without Losing Data. See screenshot:

a screenshot of enabling the Combine Rows, Columns or Cells without Losing Data feature of Kutools

3. In the popped out dialog box, please specify the operations you need as following screenshot shown:

a screenshot of configuring the Combine Columns or Rows dialog box

4. Then, click Ok, you will get the result as below screenshot shown:

1). Combine cell values into one cell for each row:

a screenshot showing the result after combining cell values into one cell for each row

2). Combine cell values into one cell for each column:

a screenshot showing the result after combining cell values into one cell for each column

3). combine a range of cell values into one single cell:

a screenshot of the original cells a screenshot of an arrow a screenshot showing all cells in the selected range are combined into one single cell

Click to Download Kutools for Excel and free trial Now!


More relative combine rows and columns articles:

  • Merge And Combine Rows Without Losing Data In Excel
  • Excel only keeps the data in the upper-left most cell, if you apply "Merge & Center" command (Home tab > Merge & Center on the Alignment panel) to merge rows of data in Excel. Users have to use another method to merge multiple rows of data into one row without deleting data.
  • Combine Duplicate Rows And Sum The Values In Excel
  • In Excel,you may always meet this problem, when you have a range of data which contains some duplicate entries, and now you want to combine the duplicate data and sum the corresponding values in another column, as following screenshots shown. How could you solve this problem?
  • Combine Date And Time Into One Cell In Excel
  • There are two columns in a worksheet, one is the date, the other is time, as shown as below, is there any way to quickly combine these two columns into one, and keep the time format?
  • Concatenate Cells Ignore Or Skip Blanks In Excel
  • Excel’s Concatenate function can help you to combine multiple cell values into one cell quickly, if there are some blank cells within the selected cells, this function will combine the blanks as well. But, sometime, you just want to concatenate cells with data and skip the empty cells, how could you finish it in Excel?

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!