PowerPivot - How do I establish a relationship between a table's columns to another table?
I'm beginning my first PowerPivot, but I'm starting to think my setup is completely wrong, or maybe PowerPivot isn't the right approach.
I have two tables: A huge table of wages per week for multiple sub departments, and a table that lists information for each department.
Two Tables Sample
I added the tables to the data model, and immediately realized I didn't know how to establish the relationship between the two since one column in the department table is related to all the columns except the date column in the Wages Table.
My end goal is to have data I can control with slicers that can show data that matches data in the Departments Table - show only Wages for Departments that are Overtime for department X, show data for all departments but only overtime, etc.
Is there an easy way to establish the relationship, or do I need to setup my data differently?
Sample Data is below if it helps.
Sample Excel File
Thanks in advance.
microsoft-excel powerpivot
add a comment |
I'm beginning my first PowerPivot, but I'm starting to think my setup is completely wrong, or maybe PowerPivot isn't the right approach.
I have two tables: A huge table of wages per week for multiple sub departments, and a table that lists information for each department.
Two Tables Sample
I added the tables to the data model, and immediately realized I didn't know how to establish the relationship between the two since one column in the department table is related to all the columns except the date column in the Wages Table.
My end goal is to have data I can control with slicers that can show data that matches data in the Departments Table - show only Wages for Departments that are Overtime for department X, show data for all departments but only overtime, etc.
Is there an easy way to establish the relationship, or do I need to setup my data differently?
Sample Data is below if it helps.
Sample Excel File
Thanks in advance.
microsoft-excel powerpivot
add a comment |
I'm beginning my first PowerPivot, but I'm starting to think my setup is completely wrong, or maybe PowerPivot isn't the right approach.
I have two tables: A huge table of wages per week for multiple sub departments, and a table that lists information for each department.
Two Tables Sample
I added the tables to the data model, and immediately realized I didn't know how to establish the relationship between the two since one column in the department table is related to all the columns except the date column in the Wages Table.
My end goal is to have data I can control with slicers that can show data that matches data in the Departments Table - show only Wages for Departments that are Overtime for department X, show data for all departments but only overtime, etc.
Is there an easy way to establish the relationship, or do I need to setup my data differently?
Sample Data is below if it helps.
Sample Excel File
Thanks in advance.
microsoft-excel powerpivot
I'm beginning my first PowerPivot, but I'm starting to think my setup is completely wrong, or maybe PowerPivot isn't the right approach.
I have two tables: A huge table of wages per week for multiple sub departments, and a table that lists information for each department.
Two Tables Sample
I added the tables to the data model, and immediately realized I didn't know how to establish the relationship between the two since one column in the department table is related to all the columns except the date column in the Wages Table.
My end goal is to have data I can control with slicers that can show data that matches data in the Departments Table - show only Wages for Departments that are Overtime for department X, show data for all departments but only overtime, etc.
Is there an easy way to establish the relationship, or do I need to setup my data differently?
Sample Data is below if it helps.
Sample Excel File
Thanks in advance.
microsoft-excel powerpivot
microsoft-excel powerpivot
asked Dec 20 '18 at 17:59
DanDan
63
63
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
For anyone else who finds this, I found the answer, I needed to unpivot my Wages data first. Long explanation is below for anyone new to this like me:
I selected the Wages Tables, and under the Data Tab, I selected "From Table/Range" in the "Get & Transform Data" Group. This opened the PowerQuery Editor.
From here, I needed to keep the date as a unique column, and combine all the wages. So after selecting the date column, I went to the Transform Tab, and opened the dropdown for "Unpivot Columns" in the "Any Column" Group.
I chose "Unpivot Other Columns" from the dropdown.
With the data in a useable format, I hit "Close and Load" in the Home tab.
This opened a new sheet with my unpivoted data in a table. This can now be loaded into the Data model under the "PowerPivot" tab and the relationship can be established now.
In my case, the new unpivoted data had a renamed column called "Attribute" which contained my Departments, and the other table also had a department column. Under the "Home" tab of PowerPivot, I opened the "diagram view" in the view group and linked the two department columns between the two table. The picture doesn't show it very well, but the link is between the two highlighted columns.
Tabled linked together
- Now I can make a pivot table based on the Wages Tables, and filter it by data in the other table. For the sample above, I can now add a slicer for Wages that only shows overtime departments, or only sub department under Dept 1 but not Dept 2, or only department 2 overtime, etc.
Example of Slicers
1
Hi Dan, glad to see you found a solution and came back to post it. Could you please elaborate a little bit more on what you did? For someone finding this question I think your answer is a bit too concise. Perhaps you can add screenshots of some intermediary steps? Thanks!
– Saaru Lindestøkke
Jan 7 at 15:13
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1386385%2fpowerpivot-how-do-i-establish-a-relationship-between-a-tables-columns-to-anot%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
For anyone else who finds this, I found the answer, I needed to unpivot my Wages data first. Long explanation is below for anyone new to this like me:
I selected the Wages Tables, and under the Data Tab, I selected "From Table/Range" in the "Get & Transform Data" Group. This opened the PowerQuery Editor.
From here, I needed to keep the date as a unique column, and combine all the wages. So after selecting the date column, I went to the Transform Tab, and opened the dropdown for "Unpivot Columns" in the "Any Column" Group.
I chose "Unpivot Other Columns" from the dropdown.
With the data in a useable format, I hit "Close and Load" in the Home tab.
This opened a new sheet with my unpivoted data in a table. This can now be loaded into the Data model under the "PowerPivot" tab and the relationship can be established now.
In my case, the new unpivoted data had a renamed column called "Attribute" which contained my Departments, and the other table also had a department column. Under the "Home" tab of PowerPivot, I opened the "diagram view" in the view group and linked the two department columns between the two table. The picture doesn't show it very well, but the link is between the two highlighted columns.
Tabled linked together
- Now I can make a pivot table based on the Wages Tables, and filter it by data in the other table. For the sample above, I can now add a slicer for Wages that only shows overtime departments, or only sub department under Dept 1 but not Dept 2, or only department 2 overtime, etc.
Example of Slicers
1
Hi Dan, glad to see you found a solution and came back to post it. Could you please elaborate a little bit more on what you did? For someone finding this question I think your answer is a bit too concise. Perhaps you can add screenshots of some intermediary steps? Thanks!
– Saaru Lindestøkke
Jan 7 at 15:13
add a comment |
For anyone else who finds this, I found the answer, I needed to unpivot my Wages data first. Long explanation is below for anyone new to this like me:
I selected the Wages Tables, and under the Data Tab, I selected "From Table/Range" in the "Get & Transform Data" Group. This opened the PowerQuery Editor.
From here, I needed to keep the date as a unique column, and combine all the wages. So after selecting the date column, I went to the Transform Tab, and opened the dropdown for "Unpivot Columns" in the "Any Column" Group.
I chose "Unpivot Other Columns" from the dropdown.
With the data in a useable format, I hit "Close and Load" in the Home tab.
This opened a new sheet with my unpivoted data in a table. This can now be loaded into the Data model under the "PowerPivot" tab and the relationship can be established now.
In my case, the new unpivoted data had a renamed column called "Attribute" which contained my Departments, and the other table also had a department column. Under the "Home" tab of PowerPivot, I opened the "diagram view" in the view group and linked the two department columns between the two table. The picture doesn't show it very well, but the link is between the two highlighted columns.
Tabled linked together
- Now I can make a pivot table based on the Wages Tables, and filter it by data in the other table. For the sample above, I can now add a slicer for Wages that only shows overtime departments, or only sub department under Dept 1 but not Dept 2, or only department 2 overtime, etc.
Example of Slicers
1
Hi Dan, glad to see you found a solution and came back to post it. Could you please elaborate a little bit more on what you did? For someone finding this question I think your answer is a bit too concise. Perhaps you can add screenshots of some intermediary steps? Thanks!
– Saaru Lindestøkke
Jan 7 at 15:13
add a comment |
For anyone else who finds this, I found the answer, I needed to unpivot my Wages data first. Long explanation is below for anyone new to this like me:
I selected the Wages Tables, and under the Data Tab, I selected "From Table/Range" in the "Get & Transform Data" Group. This opened the PowerQuery Editor.
From here, I needed to keep the date as a unique column, and combine all the wages. So after selecting the date column, I went to the Transform Tab, and opened the dropdown for "Unpivot Columns" in the "Any Column" Group.
I chose "Unpivot Other Columns" from the dropdown.
With the data in a useable format, I hit "Close and Load" in the Home tab.
This opened a new sheet with my unpivoted data in a table. This can now be loaded into the Data model under the "PowerPivot" tab and the relationship can be established now.
In my case, the new unpivoted data had a renamed column called "Attribute" which contained my Departments, and the other table also had a department column. Under the "Home" tab of PowerPivot, I opened the "diagram view" in the view group and linked the two department columns between the two table. The picture doesn't show it very well, but the link is between the two highlighted columns.
Tabled linked together
- Now I can make a pivot table based on the Wages Tables, and filter it by data in the other table. For the sample above, I can now add a slicer for Wages that only shows overtime departments, or only sub department under Dept 1 but not Dept 2, or only department 2 overtime, etc.
Example of Slicers
For anyone else who finds this, I found the answer, I needed to unpivot my Wages data first. Long explanation is below for anyone new to this like me:
I selected the Wages Tables, and under the Data Tab, I selected "From Table/Range" in the "Get & Transform Data" Group. This opened the PowerQuery Editor.
From here, I needed to keep the date as a unique column, and combine all the wages. So after selecting the date column, I went to the Transform Tab, and opened the dropdown for "Unpivot Columns" in the "Any Column" Group.
I chose "Unpivot Other Columns" from the dropdown.
With the data in a useable format, I hit "Close and Load" in the Home tab.
This opened a new sheet with my unpivoted data in a table. This can now be loaded into the Data model under the "PowerPivot" tab and the relationship can be established now.
In my case, the new unpivoted data had a renamed column called "Attribute" which contained my Departments, and the other table also had a department column. Under the "Home" tab of PowerPivot, I opened the "diagram view" in the view group and linked the two department columns between the two table. The picture doesn't show it very well, but the link is between the two highlighted columns.
Tabled linked together
- Now I can make a pivot table based on the Wages Tables, and filter it by data in the other table. For the sample above, I can now add a slicer for Wages that only shows overtime departments, or only sub department under Dept 1 but not Dept 2, or only department 2 overtime, etc.
Example of Slicers
edited Jan 8 at 17:13
answered Jan 7 at 15:09
DanDan
63
63
1
Hi Dan, glad to see you found a solution and came back to post it. Could you please elaborate a little bit more on what you did? For someone finding this question I think your answer is a bit too concise. Perhaps you can add screenshots of some intermediary steps? Thanks!
– Saaru Lindestøkke
Jan 7 at 15:13
add a comment |
1
Hi Dan, glad to see you found a solution and came back to post it. Could you please elaborate a little bit more on what you did? For someone finding this question I think your answer is a bit too concise. Perhaps you can add screenshots of some intermediary steps? Thanks!
– Saaru Lindestøkke
Jan 7 at 15:13
1
1
Hi Dan, glad to see you found a solution and came back to post it. Could you please elaborate a little bit more on what you did? For someone finding this question I think your answer is a bit too concise. Perhaps you can add screenshots of some intermediary steps? Thanks!
– Saaru Lindestøkke
Jan 7 at 15:13
Hi Dan, glad to see you found a solution and came back to post it. Could you please elaborate a little bit more on what you did? For someone finding this question I think your answer is a bit too concise. Perhaps you can add screenshots of some intermediary steps? Thanks!
– Saaru Lindestøkke
Jan 7 at 15:13
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1386385%2fpowerpivot-how-do-i-establish-a-relationship-between-a-tables-columns-to-anot%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown