Move or combine multiple cell contents into one cell
This tutorial will talk about how to combine multiple cell contents into one single cell as below screenshot shown. In Excel, you can use the & symbol, CONCATENATE or TEXTJOIN function to solve this task quickly and easily.
Move or combine multiple cell contents into one with & symbol
By using the & symbol, you can join multiple cells into one cell, please apply the below formula into a blank cell:
Then, press Enter key, all of the specified cell contents have been merged into one cell, see screenshot:
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. Hold ALT + F11 keys on the keyboard to open a Microsoft Visual Basic for Application window. If you want to merge multiple cells into one cell without losing data in excel, you can try to use an Excel VBA macro to quickly achieve the result. Just do the following steps: #1 open your excel workbook and then click on ' Visual Basic ' command under DEVELOPER Tab, or just press ' ALT+F11 ' shortcut. You can combine data from multiple cells into a single cell using the Ampersand symbol (&) or the CONCAT function. Combine data with the Ampersand symbol (&) Select the cell where you want to put the combined data. Type = and select the first cell you want to combine.
Note: In the above formula: A2, A3, A4, A5, A6, A7 and A8 are the cells that you want to combine; ' ' is a space delimiter that separate the combined data, if you want to use other delimiters, you just need to replace the space string with other separator, such as ',', '-' etc.
Move or combine multiple cell contents into one cell with CONCATENATE function
If there is long list of cells need to be merged, the above formula will be too long to type, here, I will introduce a simple formula which is created by CONCATENATE and TRANSPOSE functions.
1. Please apply the following formula into a blank cell where you want to put the result:
2. Then select the entire formula which inside the CONCATENATE function, and then press F9 key on the keyboard, this formula will be converted to an array, see screenshots:
3. And then, you should remove the curly brackets from the start and the end of the array, see screenshots:
4. After removing the curly brackets, please press Enter key directly, and all the cell contents have been merged into one cell, see screenshot:
You can also view the below demo to see the entire operation process:
Notes:
1. In the above formula, A2:A8 is the range of cells that you want to combine; ',' is a comma delimiter that separate the combined data, please change them to your need.
2. After finishing this formula, a comma will be displayed at the end of the last cell value, to remove this comma, you just need to double click the formula cell, and delete the comma after the last value.
Move or combine multiple cell contents into one with TEXTJOIN function
In Excel 2019 or Office 365, there is new TEXTJOIN function may help you to combine cell values from different cells into a single cell with ease.
The generic syntax of the TEXTJOIN is:
- delimiter: (Required) A separator or character that is used to separate the combined data.
- ignore_empty: (Required) Determine whether to ignore the empty cells, if TRUE, the empty cells will be ignored; if FALSE, the empty cells will be included.
- text1: (Required) The first text or cell to be combined.
- text2..: (Optional) The additional texts or cells to be combined.
Please enter or copy the following formula into a blank cell:
And then, press Enter key to get the result, see screenshot:
Note: In the above formula, A2:A8 is the range of cells that you want to combine; '-' is a hyphen delimiter that separate the combined data, please change them to your need.
Relative functions used:
- CONCATENATE:
- The Excel CONCATENATE function is used to join two or more text items from multiple cells into one.
- TRANSPOSE:
- The TRANSPOSE function rotates the orientation of a range or array. For example, it can rotate a table that arranged horizontally in rows to vertically in columns or vice versa.
- TEXTJOIN:
- The Excel TEXTJOIN function joins multiple values from a row, column or a range of cells with specific delimiter.
More articles:
- In Excel, sometimes, you may want to combine cells into one cell with line break as below screenshot shown. Here, in this tutorial, it introduces two formulas to solve this task with examples.
- If you have a list of text strings or sentences, now, you want to extract the specific nth word from the list as below screenshot shown. This article, I will introduce some methods for solving this job in Excel.
- If there is part of the text surrounded with the parentheses within the text string, now, you need to extract all the text strings between the parentheses as following screenshot shown. How could you solve this task in Excel quickly and easily?
- Normally, the Find and Replace feature can help you to find a specific text and replace it with another one, but, sometimes, you may need to find and replace multiple values simultaneously. For example, to replace all 'Excel' text to 'Excel 2019', 'Outlook' to 'Outlook2019' and so on as below screenshot shown. This article, I will introduce a formula for solving this task in Excel.
The Best Office Productivity Tools
Kutools for Excel - Helps You To Stand Out From Crowd
Would you like to complete your daily work quickly and perfectly? Kutools for Excel brings 300 powerful advanced features (Combine workbooks, sum by color, split cell contents, convert date, and so on..) and save 80% time for you.
- Designed for 1500 work scenarios, helps you solve 80% Excel problems.
- Reduce thousands of keyboard and mouse clicks every day, relieve your tired eyes and hands.
- Become an Excel expert in 3 minutes. No longer need to remember any painful formulas and VBA codes.
- 30-day unlimited free trial. 60-day money back guarantee. Free upgrade and support for 2 years.
Office Tab - Enable Tabbed Reading and Editing in Microsoft Office (include Excel)
- One second to switch between dozens of open documents!
- Reduce hundreds of mouse clicks for you every day, say goodbye to mouse hand.
- Increases your productivity by 50% when viewing and editing multiple documents.
- Brings Efficient Tabs to Office (include Excel), Just Like Chrome, Firefox, And New Internet Explorer.
Combine 2 Cells Into 1 Excel Chart
1. Please apply the following formula into a blank cell where you want to put the result:
2. Then select the entire formula which inside the CONCATENATE function, and then press F9 key on the keyboard, this formula will be converted to an array, see screenshots:
3. And then, you should remove the curly brackets from the start and the end of the array, see screenshots:
4. After removing the curly brackets, please press Enter key directly, and all the cell contents have been merged into one cell, see screenshot:
You can also view the below demo to see the entire operation process:
Notes:
1. In the above formula, A2:A8 is the range of cells that you want to combine; ',' is a comma delimiter that separate the combined data, please change them to your need.
2. After finishing this formula, a comma will be displayed at the end of the last cell value, to remove this comma, you just need to double click the formula cell, and delete the comma after the last value.
Move or combine multiple cell contents into one with TEXTJOIN function
In Excel 2019 or Office 365, there is new TEXTJOIN function may help you to combine cell values from different cells into a single cell with ease.
The generic syntax of the TEXTJOIN is:
- delimiter: (Required) A separator or character that is used to separate the combined data.
- ignore_empty: (Required) Determine whether to ignore the empty cells, if TRUE, the empty cells will be ignored; if FALSE, the empty cells will be included.
- text1: (Required) The first text or cell to be combined.
- text2..: (Optional) The additional texts or cells to be combined.
Please enter or copy the following formula into a blank cell:
And then, press Enter key to get the result, see screenshot:
Note: In the above formula, A2:A8 is the range of cells that you want to combine; '-' is a hyphen delimiter that separate the combined data, please change them to your need.
Relative functions used:
- CONCATENATE:
- The Excel CONCATENATE function is used to join two or more text items from multiple cells into one.
- TRANSPOSE:
- The TRANSPOSE function rotates the orientation of a range or array. For example, it can rotate a table that arranged horizontally in rows to vertically in columns or vice versa.
- TEXTJOIN:
- The Excel TEXTJOIN function joins multiple values from a row, column or a range of cells with specific delimiter.
More articles:
- In Excel, sometimes, you may want to combine cells into one cell with line break as below screenshot shown. Here, in this tutorial, it introduces two formulas to solve this task with examples.
- If you have a list of text strings or sentences, now, you want to extract the specific nth word from the list as below screenshot shown. This article, I will introduce some methods for solving this job in Excel.
- If there is part of the text surrounded with the parentheses within the text string, now, you need to extract all the text strings between the parentheses as following screenshot shown. How could you solve this task in Excel quickly and easily?
- Normally, the Find and Replace feature can help you to find a specific text and replace it with another one, but, sometimes, you may need to find and replace multiple values simultaneously. For example, to replace all 'Excel' text to 'Excel 2019', 'Outlook' to 'Outlook2019' and so on as below screenshot shown. This article, I will introduce a formula for solving this task in Excel.
The Best Office Productivity Tools
Kutools for Excel - Helps You To Stand Out From Crowd
Would you like to complete your daily work quickly and perfectly? Kutools for Excel brings 300 powerful advanced features (Combine workbooks, sum by color, split cell contents, convert date, and so on..) and save 80% time for you.
- Designed for 1500 work scenarios, helps you solve 80% Excel problems.
- Reduce thousands of keyboard and mouse clicks every day, relieve your tired eyes and hands.
- Become an Excel expert in 3 minutes. No longer need to remember any painful formulas and VBA codes.
- 30-day unlimited free trial. 60-day money back guarantee. Free upgrade and support for 2 years.
Office Tab - Enable Tabbed Reading and Editing in Microsoft Office (include Excel)
- One second to switch between dozens of open documents!
- Reduce hundreds of mouse clicks for you every day, say goodbye to mouse hand.
- Increases your productivity by 50% when viewing and editing multiple documents.
- Brings Efficient Tabs to Office (include Excel), Just Like Chrome, Firefox, And New Internet Explorer.