TEXTJOIN 2 columns over multiple rows

Allen_Mead

New Member
Joined
May 31, 2019
Messages
34
Office Version
  1. 365
Platform
  1. Windows
Hi, I would like to join 2 columns together using 'text join' and would therefore be as follows:

Bob, 0
Fred, 1
George, 2
etc., etc.,

Column A has a name, column B has a number and I would like to separate them with a comma. I can do single rows as follows:

Excel Formula:
=TEXTJOIN(", ", TRUE, A4:B4)

But having trouble with multiple rows, I can do it but, I can't get it to show each name on a new line in the single cell, it's just one continuous line of text with a comma between every entry such as my effort below:

Bob, 0, Fred, 1, George, 2,

Excel Formula:
=TEXTJOIN(", ", TRUE, A2:B13)
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
How about
Excel Formula:
=SUBSTITUTE(TEXTJOIN({", ","|"},,A2:B13),"|",CHAR(10))
 
Upvote 1
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,954
Members
449,095
Latest member
nmaske

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top