Need an expert to help me out with this one -
I have two columns A,B with rows of data.
A contains unique vales. B contains non-unique values.
I need to concatenate all of the values from Column A together where their B values are equal using ; as delimiter. It doesnt matter where the conc string goes (in a new row underneath each group?
For example,
1,A
2,A
3,B
4,B
Becomes:
1,A
2,A
1;2
3,B
4,B
3;4
Any ideas?
Thanks
Chris
I have two columns A,B with rows of data.
A contains unique vales. B contains non-unique values.
I need to concatenate all of the values from Column A together where their B values are equal using ; as delimiter. It doesnt matter where the conc string goes (in a new row underneath each group?
For example,
1,A
2,A
3,B
4,B
Becomes:
1,A
2,A
1;2
3,B
4,B
3;4
Any ideas?
Thanks
Chris