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 September 15. Request your voucher.

Reply
Anonymous
Not applicable

Creating a single table from 2 tables

Hi i am trying to create a single table in BI combined from 2 separate data sources.

 

i only need to use one column, i.e the account number.

 

Both tables will include data that is duplicated and each table will also have unique values and i want to create a single map table of all account numbers that appear in both of the previous tables to create a master table.

 

what is the easiest way to do this?

 

 

2 ACCEPTED SOLUTIONS
Stachu
Community Champion
Community Champion

in Power Query (replace the red code with your references)

let
    Tab1 = Table1,
    Tab1_single_column = Table.SelectColumns(Tab1,{"Id"}),
    Tab2 = Table2,
    Tab2_single_column = Table.SelectColumns(Tab2,{"Id"}),
    #"Appended Query" = Table.Combine({Tab1_single_column, Tab2_single_column}),
    #"Removed Duplicates" = Table.Distinct(#"Appended Query")
in
    #"Removed Duplicates"


Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

View solution in original post

Kasunpathirana
Advocate IV
Advocate IV

Append.png

Use the Append Query and then You would arrive at below result

 

result.png

 

Then you can right click on the account number and click Remove Duplicates. This will help to remove the duplicated Account Value. Finally you will arrive at below.

 

Last.png

Hope this helps Smiley Wink 

View solution in original post

2 REPLIES 2
Kasunpathirana
Advocate IV
Advocate IV

Append.png

Use the Append Query and then You would arrive at below result

 

result.png

 

Then you can right click on the account number and click Remove Duplicates. This will help to remove the duplicated Account Value. Finally you will arrive at below.

 

Last.png

Hope this helps Smiley Wink 

Stachu
Community Champion
Community Champion

in Power Query (replace the red code with your references)

let
    Tab1 = Table1,
    Tab1_single_column = Table.SelectColumns(Tab1,{"Id"}),
    Tab2 = Table2,
    Tab2_single_column = Table.SelectColumns(Tab2,{"Id"}),
    #"Appended Query" = Table.Combine({Tab1_single_column, Tab2_single_column}),
    #"Removed Duplicates" = Table.Distinct(#"Appended Query")
in
    #"Removed Duplicates"


Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

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.