Hi, I have a list of accounts and their customer Ids, some accounts can have more than 1 customer and different customer types. I would like to transpose by type of customer. Here's what I mean:
HAVE
Acct Type_A Type_B Type_C
001 123 234
001 123 356
002 567 124 345
002 567 124 678
WANT
Acct Type_A Type_B1 Type_B2 Type_C1 Type_C2
001 123 234 356
002 567 124 345 678
This logic applied to a list of 1 million accouts.
thanks