How to Combine text from two or more cells in Excel

17
Combine text from two or more cells into one cell

Transcript of How to Combine text from two or more cells in Excel

Page 1: How to Combine text from two or more cells in Excel

Combine text from two or more cells

into one cell

Page 2: How to Combine text from two or more cells in Excel

You can combine or merge text from two or more cells into one cell.

Page 3: How to Combine text from two or more cells in Excel

One way to do this is to write a formula in a third column which uses the concatenation

operator, the ampersand (&).

Page 4: How to Combine text from two or more cells in Excel

1. Click the cell where you want to put the combined text.

Page 5: How to Combine text from two or more cells in Excel

2. Type =(

Page 6: How to Combine text from two or more cells in Excel

3. Click the cell that contains the first text you want to combine, such as a person’s first name.

Page 7: How to Combine text from two or more cells in Excel

4. Type &” “& (a space enclosed in quotation marks).

Page 8: How to Combine text from two or more cells in Excel

5. Click the next cell with the text that you want to combine, such as a person’s last name.

Page 9: How to Combine text from two or more cells in Excel

6. Type ) and then press ENTER. That’s all there is to it!

Page 10: How to Combine text from two or more cells in Excel

To add a comma, type &”, “& (a comma followed by a space, both enclosed in quotation marks).

Page 11: How to Combine text from two or more cells in Excel

To combine the text in more than two cells, continue selecting cells, and typing &” “& after each cell you select.

Page 12: How to Combine text from two or more cells in Excel

The CONCATENATE function can also be used to join different pieces of text together.

Page 13: How to Combine text from two or more cells in Excel

Excel 2016

CONCAT replaces the CONCATENATE function.

Page 14: How to Combine text from two or more cells in Excel

Excel 2016

CONCAT replaces the CONCATENATE function.

The CONCAT function combines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments.

Page 15: How to Combine text from two or more cells in Excel

Excel 2016

CONCAT replaces the CONCATENATE function.

The CONCAT function combines the text from multiple ranges and/or strings, but it doesn't provide the delimiter or IgnoreEmpty arguments.

The TEXTJOIN function combines the text from multiple ranges and/or strings, and includes a delimiter you specify between each text value that will be combined.

Page 16: How to Combine text from two or more cells in Excel

CONCAT vs TEXTJOIN Example

=CONCAT("The"," ","sun"," ","will"," ","come"," ","up"," ","tomorrow.") will return: The sun will come up tomorrow.

=TEXTJOIN(" ",TRUE, "The", "sun", "will", "come", "up", "tomorrow.") will return: The sun will come up tomorrow.

Page 17: How to Combine text from two or more cells in Excel

http://excelspreadsheetshelp.blogspot.com