Here's my current situation:
I'm presented with a long list of data, containing names and values, with a corresponding value ID. The number of IDs can be varying for data presented, but is constant for the whole set. (This set will have exactly 2 Values per name). The thing is, the names repeat, but the IDs do not. My question then becomes,
How can I convert a table that looks like this:
Name | ID | Value
Sam | 1 | 15
Sam | 2 | 6
Bob | 1 | 9
Bob | 2 | 11
Into something more like this:
Name | Value1 | Value2
Sam | 15 | 6
Bob | 9 | 11
Note: I'm finding a really hard time figuring out a title for this question.