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
edwardroa
Helper I
Helper I

Combining 3 tables in Power Query without losing any columns

Firstly thank you for looking into my query!

 

I'm struggling to combine 3 tables into 1 tables without losing any columns. I am currently using the "Append Queries" function to combine the 3 tables into the 1 table however when I combine them, instead of using a unique column and adding additional columns onto the end, it loads the 3 tables as 3 separate lines.

 

For example, below are 3 tables with one column in common across the 3 tables (Unique reference):

 

Table 1

edwardroa_0-1663821087278.png

 

Table 2

edwardroa_1-1663821124041.png

 

Table 3

edwardroa_2-1663821146003.png

 

Desired Table

edwardroa_4-1663821236190.png

 

I'm sure there must be an easy way however I've not been able to find it yet.

 

Any guidance would be much appreciated.


Thank you,

Edward

2 REPLIES 2
Adel
Helper III
Helper III

you could use this for example 

You can use List.Generate() to try your loop query and then append the list like:

let
...
TablesToAppend = List.Generate(your loop query),
TablesAppended = Table.Combine(List.Transform(TablesToAppend, each (_))),
...
in
...

Hi Adel,

 

What do you mean by "your loop query" please?

 

Kind regards,

Edward

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.