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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
JemmaD
Helper V
Helper V

Union Distinct multiple columns in Power Query M

Hi there, 

I have four fact tables and I need to create a dimension table pulling two columns from each of the four fact tables.

Let's say the fact tables are named [Table1] [Table2] [Table3] [Table4]

And the two columns I need from each are called [Product] [Branch]

I am able to union distinct on one column, but I can't get the syntax right for two columns.

Here is my code for the one column, can you help me add in the second?

 

 

= Table.Distinct(Table.Combine({
Table.FromColumns ({Table1[Product]}, {"Product"}),
Table.FromColumns ({Table2[Product]}, {"Product"}),
Table.FromColumns ({Table3[PRODUCT]}, {"Product"}),
Table.FromColumns ({Table4[PRODUCT]}, {"Product"})
}))

 

1 ACCEPTED SOLUTION
spinfuzer
Solution Sage
Solution Sage

The problem here is that you have differing column names.  You could make this problem a lot easier by making the column names the same.  A simple Table.Combine would work if all the names were the same.  Because they are not, you can use something like the below.

 

 

= Table.Distinct(Table.FromColumns(
        List.Transform(
            List.Zip({
                Table.ToColumns(Table1[[Product],[Branch]]), 
                Table.ToColumns(Table2[[Product],[Branch]]), 
                Table.ToColumns(Table3[[PRODUCT],[Branch]]),
                Table.ToColumns(Table4[[Product],[BRANCH]])
            }), 
        List.Combine), 
{"Product", "Branch"}))

 

 

 

View solution in original post

2 REPLIES 2
Ahmedx
Super User
Super User

pls try this

 

 

Table.Distinct(
   Table1[[Product],[Branch] ] & 
   Table2[[Product] ,[Branch] ]&
   Table3[[Product] ,[Branch] ]&
   Table4[[Product] ,[Branch] ],
{"Product", "Branch"})

 

 

spinfuzer
Solution Sage
Solution Sage

The problem here is that you have differing column names.  You could make this problem a lot easier by making the column names the same.  A simple Table.Combine would work if all the names were the same.  Because they are not, you can use something like the below.

 

 

= Table.Distinct(Table.FromColumns(
        List.Transform(
            List.Zip({
                Table.ToColumns(Table1[[Product],[Branch]]), 
                Table.ToColumns(Table2[[Product],[Branch]]), 
                Table.ToColumns(Table3[[PRODUCT],[Branch]]),
                Table.ToColumns(Table4[[Product],[BRANCH]])
            }), 
        List.Combine), 
{"Product", "Branch"}))

 

 

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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