DAX Formula?

Craigc3814

Board Regular
Joined
Mar 7, 2016
Messages
217
I have two table one is my project table and it contains all information regarding any projects that we have. I also have a Timesheet table that gives me all employees timesheet data.

Both tables contain 3 identical column Project Number, Project Task Number, Project Subtask number.

I want to look at the Budget Hours For each Project Number, Project Task Number, and Project SubTask number on the Project table and subtract the total of all hours charged to each one from the Timesheet table


Here is an example of how data would look on the Project Table

Project Number1 Project Task Project Sub Task Budget Hours
1111 1 1 10
1111 1 2 15
1111 2 1 30
1112 1 1 100

Here is how time is charged on the timesheet table

Employee Project Number Project Task Project Sub Task Hours Charged
1 1111 1 2 3
1 1111 1 2 1
2 1111 1 2 4
3 1111 1 1 1
3 1112 1 1 8
1 1112 1 1 8
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Why do you want to use DAX? Easy to accomplish in Power Query. Group the timesheet table by Project, Task and Sub-Task. Sum the budget hours. Merge the project table with the summarised timesheet linking on Profect, Task and subtask. Expand table to get Charged Hours. Create a new column which is budget-charged hours.
Peter
 
Upvote 0
Yea, it was a completely dumb question. I am pretty new to Power BI but would rank myself as high intermediate in PQ (I can figure out anything in PQ so far just probably not always in the most efficient way).

What I ended up doing was creating an additional column in query editor that merged the three columns and made a relationship on that. It worked perfectly. I just did not realize that DAX would automatically sum everything for me from the timekeeping table. I thought issues would arise but nope, none. I did not want to go the grouping method because I did not want to lose the line by line data so that on another sheet people could look at who all had charged time to a project, how much time they charged, and when they charged it.

Thank you for your response!!
 
Upvote 0

Forum statistics

Threads
1,214,548
Messages
6,120,141
Members
448,948
Latest member
spamiki

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