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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
CMoppet
Helper IV
Helper IV

Combining data from multiple tables in to single reporting data point

Hello,  I am on Day 2 using Power BI, so apologies in advance if I'm unable to explain my request with the correct lingo...

 

I have 4 tables of complaints data (Table 1, Table 2, Table 3, Table 4), and each table has a column titled 'Category'.  Within this column, the results will either be 'Food', 'Machine', or 'Other'. 

 

All four tables also have a column titled 'Period', with results being in the format of mm yyyy

 

Aside from these two columns which are common to all four tables, the rest of the columns/data is different in each table.

 

I want to create a chart that shows the overall picture of how complaints each period are split between Food, Machine, and Other.  I am struggling to figure out how to 'roll up' the results from all 4 tables in to one summary view.  I've tried doing a measure that adds the Categories together, but this doesn't give me the right result.

 

Please could someone help me, assuming I've explained this well enough?

 

ManyThanks

1 ACCEPTED SOLUTION
Daryl-Lynch-Bzy
Resident Rockstar
Resident Rockstar

Hi @CMoppet - I would recommend appending the tables into one table in Power Query.  Use the Append table function.

DarylLynchBzy_0-1649948995279.png

After combining the table you should remove any unnecessary columns.  If you still need to know which table provide which data, you can add a new column to each table before Combining.  In the new column, put something like "Table 1", "Table 2" etc.  This can be used in Slicer when visualising the data, or in CALCULATE functions to measures.



View solution in original post

2 REPLIES 2
johnt75
Super User
Super User

You should create a couple of dimension tables which you can link to each of the others. You should create a proper date table, there's plenty of articles and videos on creating those, and you can create a new category dimension table by selecting New Table from the Modelling tab of the ribbon and entering

Category Dimension = DISTINCT( UNION(
ALLNOBLANKROW( 'Table1'[Category]),
ALLNOBLANKROW( 'Table2'[Category]),
ALLNOBLANKROW( 'Table3'[Category]),
ALLNOBLANKROW( 'Table4'[Category])
))

then link this new table in a one-to-many relationship with the 4 other tables.

You can then create a new measure which will show the number of complaints per category like

Num complaints = COUNTROWS( 'Table1') + COUNTROWS( 'Table2') + COUNTROWS( 'Table3') + COUNTROWS( 'Table4')

put that into a visual with the category column from the new dimension table and it will give the numbers for each category

Daryl-Lynch-Bzy
Resident Rockstar
Resident Rockstar

Hi @CMoppet - I would recommend appending the tables into one table in Power Query.  Use the Append table function.

DarylLynchBzy_0-1649948995279.png

After combining the table you should remove any unnecessary columns.  If you still need to know which table provide which data, you can add a new column to each table before Combining.  In the new column, put something like "Table 1", "Table 2" etc.  This can be used in Slicer when visualising the data, or in CALCULATE functions to measures.



Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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