I have an xls file with values of the following:
ID Value
1 value1
1 value2
1 value3
2 value1
2 value2
3 value1
3 value2
etc
I would like to transform this to (create a new sheet)
ID Values
1 value1,value2,value3
2 value1,value2
3 value1,value2,value3
Basically, I would like all rows that have the same ID to join all values comma separated.
Thanks,
Try below code :