I have data in the format of :
123 AAA 789 EEE 1
123 AAA 987 FFF 1
234 BBB 102 HIJ 2
234 BBB 203 LKJ 1
234 BBB 304 TTT 3
456 CCC 717 ASD 1
456 CCC 191 ZXC 2
What I is to convert the data to :
123 AAA 789 EEE 1 987 FFF 1
234 BBB 102 HIJ 2 203 LKJ 1 304 TTT 3
456 CCC 717 ASD 1 191 ZXC 2
One row for each unique value in the first column. Please do not suggest the FAQ “How to concatenate multiple child records into a single value”. I do not want to concatenate the values into one field.
Thanks for your help.
123 AAA 789 EEE 1
123 AAA 987 FFF 1
234 BBB 102 HIJ 2
234 BBB 203 LKJ 1
234 BBB 304 TTT 3
456 CCC 717 ASD 1
456 CCC 191 ZXC 2
What I is to convert the data to :
123 AAA 789 EEE 1 987 FFF 1
234 BBB 102 HIJ 2 203 LKJ 1 304 TTT 3
456 CCC 717 ASD 1 191 ZXC 2
One row for each unique value in the first column. Please do not suggest the FAQ “How to concatenate multiple child records into a single value”. I do not want to concatenate the values into one field.
Thanks for your help.