Hello,
I have data in two columns A & B, I need to merge the rows in Column B into a single cell based on the value in Column A with a "-" separating them, and drop into columns C & D, please see below:
Thanks in advance!
I have data in two columns A & B, I need to merge the rows in Column B into a single cell based on the value in Column A with a "-" separating them, and drop into columns C & D, please see below:
Column A | Column B | Column C | Column D | |
Data | Macro Output | |||
Account | Name | Account | Name | |
12345 | ABC | 12345 | ABC-Jeff-CDE-Bob | |
12345 | Jeff | 67890 | Kyle-JKL-Ruth-XYZ | |
12345 | CDE | |||
12345 | Bob | |||
67890 | Kyle | |||
67890 | JKL | |||
67890 | Ruth | |||
67890 | XYZ |
Thanks in advance!