I've been through and seen this question asked in a million different ways, but none of the answers seem to fit my particular needs, so I'm hoping someone can help.
I have a table like below:
URN | CustomerID | Selection
----------
1 | 1 | 16A
----------
2 | 1 | 16B
----------
3 | 1 | 16C
----------
4 | 2 | 16A
----------
5 | 2 | 16C
----------
6 | 1 | 16D
----------
6 | 1 | 16E
----------
What I'd like is an export table or query that looks like the below (limited to 5 columns for selection):
CustomerID | Selection 1 | Selection 2 | Selection 3 | Selection 4 | Selection 5
----------
1 | 16A | 16B | 16C | 16D | 16E
----------
2 | 16A | 16C
----------