I'm trying to figure out how to group or transpose data by column value... I have about 15,000 rows of data that need to be organized so I can't do this manually.
The data is output from software that I use and organized by "ID" (which is col1) then each parameter attached to that ID is listed one after the other until all parameters for that ID are listed, then it moves on to the next ID and lists all of the parameters for the next ID.
I need to group all parameters from each ID into ONE row instead of having them in columns. Example below...
e.g.
Input
col1 col2
1 1.1
1 10
1 11
2 98
2 yes
2 orange
3 21
3 5678
3 blue
Desired Result
col1 col2 col3 col4
1 1.1 10 11
2 98 yes orange
3 21 5678 blue
Any help is greatly appreciated...
Bookmarks