I suspect that this will already have been answered elsewhere, but as I'm finding it difficult to put into words what I need to do, I'm finding it equally difficult to come up with good search terms.
Basically I've got this kind of situation: I have a spreadsheet with a list of scores given to items, but the number of scores for an item can differ, so the list might look something like this:
What would be the best/easiest way to turn this into the following?
Basically I've got this kind of situation: I have a spreadsheet with a list of scores given to items, but the number of scores for an item can differ, so the list might look something like this:
Item A | 4 |
Item A | 7 |
Item B | 8 |
Item B | 7 |
Item B | 9 |
Item C | 4 |
Item C | 2 |
Item C | 5 |
Item D | 6 |
What would be the best/easiest way to turn this into the following?
Item A | 4 | 7 | |
Item B | 8 | 7 | 9 |
Item C | 4 | 2 | 5 |
Item D | 6 |