Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Ancaaaa
Regular Visitor

Bring data from other table based on conditions

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.

 

Ancaaaa_1-1675255719798.png

Really appreciated your help here.

 

 

1 REPLY 1
FreemanZ
Super User
Super User

hi @Ancaaaa 

you just need to unpivot the table in Power Query.

FreemanZ_0-1675256265351.pngFreemanZ_1-1675256283334.png

 

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"

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.