Hi,
I need a help.
For the below dataset how to de-norrmalize the data considering record id as the key
RecordID | Type | TYPE_VALUE |
1 | CITY | MUMBAI |
1 | COUNTRY | INDIA |
1 | REGION | ASIA |
Expected Output
CITY | COUNTRY | REGION | |
REGION | ASIA | ||
COUNTRY | INDIA | ASIA | |
CITY | MUMBAI | INDIA | ASIA |
I got all the combiations of the data with crossing it, then i tried with Tile and Cross and Transpose but couldn't arrive the result.
Appreciate any help
Thx
@mgrajkumar you can do something like below
Hi @binuacs
Thanks for the response. In my case the type and type values are dynamic so i can't hardcode these values in the formula. May need a refined approach. I tried few combinations but couldn't achieve the desired results
Thanks
Raj