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