My data is as follows:
**Name** **DOB** **B1** **C1**
cust A 01/06/99 ba1 ca1
cust A 01/06/99 ba2 ca2
I need to combine the rows for columns b1 and c1 within one row with the result looking like:
**Name** **DOB** **B1** **C1**
cust A 01/06/99 ba1, ba2 ca1, ca2
I'm tried different ways of concatenating the rows together, but it hasn't seemed to work. There can also be more than 2 rows for a single customer or only 1. Any help is appreciated.