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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
WillianLopes
New Member

Merge rows from different tables using Power Query

I have 2 separate tables to store products. Although it is 2 different tables, their structure is exactly the same.

 

In these tables, each line has an item and the indication to which departments it should be made available.

 

However, because there are 2 tables, the same item can appear in the tables and in each one marking different departments.

 

I would like to make a table unifying the 2 previous ones and making sure that the item that appears repeated in the tables does not come out in 2 lines but that its line is merged, pointing in the new table the departments of the 2 tables.

 

Obviously this concept of departments is not real, I just used it to try to better explain my situation.

 

Please can you help me to resolve this?

 

APAGAR.png

1 ACCEPTED SOLUTION
jennratten
Super User
Super User

Hello - here is how you can accomplish this.

SCRIPT

let
    Source = Table.Combine({Table01, Table02}),
    #"Unpivoted Columns" = Table.UnpivotOtherColumns(Source, {"Product"}, "Attribute", "Value"),
    #"Filtered Rows" = Table.SelectRows(#"Unpivoted Columns", each ([Value] = "x")),
    #"Pivoted Column" = Table.Pivot(#"Filtered Rows", List.Distinct(#"Filtered Rows"[Attribute]), "Attribute", "Value")
in
    #"Pivoted Column"

jennratten_0-1679318928329.png

 

View solution in original post

2 REPLIES 2
WillianLopes
New Member

That's perfect!

jennratten
Super User
Super User

Hello - here is how you can accomplish this.

SCRIPT

let
    Source = Table.Combine({Table01, Table02}),
    #"Unpivoted Columns" = Table.UnpivotOtherColumns(Source, {"Product"}, "Attribute", "Value"),
    #"Filtered Rows" = Table.SelectRows(#"Unpivoted Columns", each ([Value] = "x")),
    #"Pivoted Column" = Table.Pivot(#"Filtered Rows", List.Distinct(#"Filtered Rows"[Attribute]), "Attribute", "Value")
in
    #"Pivoted Column"

jennratten_0-1679318928329.png

 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

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

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.