CassidyHunt
IS-IT--Management
I have a set of data that I want to basically build a pivot table on but instead of performing some calculations on the data I would like to concatenate all the values with a comma or something. Basically have it look like this
My data is structured as such
Hopefully this makes sense.
Thanks
Cassidy
Code:
Lev1 Lev2 Lev3
Item1 red,blue green, black
Item2 cyan red,green
Item3 Blue
My data is structured as such
Code:
Item1 Lev1 Red
Item1 Lev1 Blue
Item1 Lev3 Green
Item1 Lev3 Black
Item2 Lev1 Cyan
Item2 Lev2 Red
Item2 Lev2 Green
Item3 Lev3 Blue
Hopefully this makes sense.
Thanks
Cassidy