The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello,
I have these 2 tables, first called Targets and second DATA_Exit... i would like to bring in table DATA_Exit the targets specific to each metal status / Country.
Really appreciated your help here.
hi @Ancaaaa
you just need to unpivot the table in Power Query.
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Unpivoted Other Columns" = Table.UnpivotOtherColumns(Source, {"Country"}, "Attribute", "Value"),
#"Renamed Columns" = Table.RenameColumns(#"Unpivoted Other Columns",{{"Value", "Targe"}})
in
#"Renamed Columns"