Allen_Mead
New Member
- Joined
- May 31, 2019
- Messages
- 34
- Office Version
- 365
- Platform
- 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:
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,
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)