Forum Discussion
Anonymous
6 years agoNot applicable
Unstructured Table
Hi Team, Thank you so much for your help, now I have another query... How can I work on Trend Analysis/Line chart in the below one. Thanks, Kali
amitchandak
Super User
6 years agoAnonymous
Unpivot the data create tables/dimensions for the Market, Keys and year to create star schema model
https://radacad.com/pivot-and-unpivot-with-power-bi
Market = distinct(all(Table[Market]))
Keys= distinct(all(Table[Keys]))
Year= distinct(all(Table[Year])) //You will get after Unpivot
Join them back with table
Refer:https://docs.microsoft.com/en-us/power-bi/guidance/