Creating Relationship/Link among similar Tables in PowerPivot (Pivot Table)

soupious

New Member
Joined
Jan 24, 2016
Messages
10
Hi experts, I just start to use this awesome wonder called PowerPivot. I've been a regular user of Pivot Table. I am not sure if my question is a simple one. Here it goes. I have two Lookup Tables: Date Table and Factory Table (only consist of factory codes and their corresponding names). In the other hand, I have three Factory Production Tables. The columns I wanted to connect are the Total Production in each of the three Factory Production Tables. The reason I separated the three production tables is because each of them have slightly different calculation that would be to complex to combine into one table.


--------------------------------
These are the settings of my Pivot Table (from PowerPivot)
Row Label:
-Factory
-Year
-MonthName
-Day

Values:
-Sum of Total Production
-Sum of Total Production 2
-Sum of Total Production 3
--------------------------------

As a result, I will now have three separate columns giving me the Total Production. I do not know how to combine the three of the columns to be just one "MASTER-Sum of Total Production".

If (and only if) I could combine all three Production Tables (which almost impossible, it will be possible but with lots of blank columns as each of the factory has different calculated fields), all of this would have been solved already.

I have seen a video about Power BI ads. which says that it could combine all similar data, let say all total sales/production from similar types of reports of Multi National Company (where the reports are similar but in slightly different formatting due to preference of the staff in each country for example) into one Dashboard. I have not used Power BI yet but I know power BI is based on PowerPivot logical thinking. Please help me. I would greatly appreciate it. Have a good day!
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Hi Soupious,

if you are just starting to use Power Pivot, I strongly recommend you take a look at Power Query. It is a great feature by itself and the perfect companion for Power Pivot, helping you to shape data from a variety of sources prior to loading it to your data model.

For your particular situation, there is a very simple solution. I will try to explain using three dummy tables with different columns.

Excel 2016 (Windows) 64 bit
FactoryDateCalculation1Production
1​
01-feb​
10​
2​
01-feb​
20​
3​
01-feb​
30​
FactoryDateCalculation1Calculation2Production
4​
01-feb​
40​
5​
01-feb​
50​
6​
01-feb​
60​
FactoryDateCalculation1Calculation2Calculation3Production
7​
01-feb​
70​
8​
01-feb​
80​
9​
01-feb​
90​

<tbody>
</tbody>

Appending this tables doesn't seem so straightforward without having lots of columns with empty values for most rows, but Power Query comes to the rescue with some very simple steps to load a table with only the desired info from each table (Factory, Date, and Production).

1.- Select any cell within one of your tables and click 'From Table' in the 'Get & Transform' group of the 'Data' tab in the Menu Ribbon.

This will open the Power Query Editor window and you will see the data from your table without cell formatting. On the right side you will see a pane with the query steps (Source and Changed Type)

2.- Delete the 'Changed Type' step from the query (select the step and click on the X, hit Delete or right click and select Delete)

You shouldn't notice much of a change, except for the column headers and the contents of the formula bar that should now display something like:

= Excel.CurrentWorkbook(){[Name="YourTableName"]}[Content]

3.- Go to the formula bar and delete everything that comes after Excel.CurrentWorkbook() and hit ENTER. This should change the display to a table with two columns like:

ContentName
TableProduction03
TableProduction02
TableProduction01

<tbody>
</tbody>

4.- If you have other tables or named ranges in your workbook that don't belong to the production table, use the filter on the Name column to keep only you production tables.

5.- On the column header for Content, select the expand button ( something like ↰↱ ) and select the columns you need for PowerPivot using the checkboxes. Uncheck 'Use column name as prefix' and hit Ok.

You should now see a table with the columns you selected and all the data from the three tables.

6.- Select all the columns and choose 'Detect Data Type' (not sure of the exact word since my UI is in Spanish) in the 'Any Column' group of the 'Transform' tab of the Menu Ribbon.

7.- Now for the final step, click on the drop down menu in the 'Close' group of the 'Start' tab of the Menu Ribbon (leftmost button on the ribbon) and choose 'Close and Load In'. This should open a new window where you may choose between the Table and Connection Only options. I recommend Connection Only because it makes your file size smaller, but if you want to be able to access the newly created table directly from a worksheet you can select Table.

The important thing here is checking Add to Data Model to make the new table available to Power Pivot. Select Load.

You now have the table available for Pivot Tables and you can directly use the Production column or create a measure like SumProduction:= SUM( YourTable[Production] ) to display in your pivot table.

FactoryYearMonthDaySumProduction
1
2017
febrero
1​
10​
2
2017
febrero
1​
20​
3
2017
febrero
1​
30​
4
2017
febrero
1​
40​
5
2017
febrero
1​
50​
6
2017
febrero
1​
60​
7
2017
febrero
1​
70​
8
2017
febrero
1​
80​
9
2017
febrero
1​
90​
Total general
450

<tbody>
</tbody>

Have fun. I hope it helps.
 
Last edited:
Upvote 0
Hi FranzV,
Thanks for your help I will try to test it. My current company lacks of such resources where I do not have access to the latest Microsoft Office. They were using Office 2007 before I joined here. Now, they upgraded it to 2010, I do not think that Office 2010 has Power Query. Nevertheless, I appreciate your help, I will give it a try somehow. Thanks a bunch! Have a good day.
 
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top