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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
topazz11
Helper III
Helper III

Combining multiple table with date

Hello,

 

I have 3 tables which contains similar data with month/year and some blank/zero value.

I'd like to combine them as single table.

 

What is the best way to achive this?

 

Thanks,

 

Screenshot 2024-04-29 205530t1.png

 

desired output

 

Screenshot 2024-04-29 205553t2.png

1 ACCEPTED SOLUTION
vicky_
Super User
Super User

You can either merge queries (2x) in PowerQuery, or you can try create a table with DAX. Something like:
CombinedTable = ADDCOLUMNS(Table1, "Actual1", RELATED(Table2[Actual1]), "Actual2", RELATED(Table3[Actual2]))

 

(the above dax would only work if there's a relationship between the date columns)

View solution in original post

2 REPLIES 2
vicky_
Super User
Super User

You can either merge queries (2x) in PowerQuery, or you can try create a table with DAX. Something like:
CombinedTable = ADDCOLUMNS(Table1, "Actual1", RELATED(Table2[Actual1]), "Actual2", RELATED(Table3[Actual2]))

 

(the above dax would only work if there's a relationship between the date columns)

MattAllington
Community Champion
Community Champion

Using power query, load each of the 3 tables and set so they don't load

modify each table so it has a "type" column.  Ie the first table will be type = Plan, second will be Actual1, etc. you do this by adding a custom column and set the value of the column to the type

rename the data column to be called "value". All 3 tables must have exactly the same column names

append the 3 tables together and load. 

you can then build the output you want from this final loaded table. 



* Matt is an 8 times Microsoft MVP (Power BI) and author of the Power BI Book Supercharge Power BI.
I will not give you bad advice, even if you unknowingly ask for it.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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