Our business model currently offers multiple product options. I'd like to create brand new rows for each customer, 1 for each product, whether they own that product or not. My thought is to use new columns and then use a dynamic unpivot. Need help creating the new columns first though..
Currently have this:
Account Product
xxxxxxx A
xxxxxxp B
xxxxxpp C
xxxxppp D
Trying to create:
Account Product A Product B Product C Product D
xxxxxxx A null null null
xxxxxxp null B null null
xxxxxpp null null C null
xxxxppp null null null D
End Goal:
Account Product
xxxxxxx A
xxxxxxx B
xxxxxxx C
xxxxxxx D
xxxxxxp A
and so on..
Does anyone have an idea of how to do this?