Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi all
Newbie here looking for some guidance. I'm trying to figure out what is the best DAX approach in solving the following problem. Any help from experts in this community is much appreciated.
I have a table with that has timesheet data submitted by employees to record their time spent on customers. My goal is to proportionally allocate each employees cost to the respective customer accounts they worked on. The output will simply show two columns Customers and Allocated labour cost. Here is an snapshot of how I'm doing it in excel now. I tried using SummarizeColumns with AddColumns but could not figure out the DAX code. Thanks
Solved! Go to Solution.
Try this solution.
1. Data model:
2. Measures:
Billable Hours = SUM ( LaborHours[Billable Hours] )
Non-Billable Hours = SUM ( LaborHours[Non-Billable Hours] )
Allocated Labor Cost =
VAR vBaseTable =
ADDCOLUMNS (
SUMMARIZE (
LaborHours,
Customer[Customer ID],
Employee[Employee ID],
Employee[Labor Cost]
),
"@CustomerHours", [Billable Hours] + [Non-Billable Hours]
)
VAR vEmpHoursTable =
ADDCOLUMNS (
vBaseTable,
"@EmployeeHoursTotal", CALCULATE ( [Billable Hours] + [Non-Billable Hours], ALL ( Customer ) )
)
VAR vPercentTable =
ADDCOLUMNS (
vEmpHoursTable,
"@Percent", DIVIDE ( [@CustomerHours], [@EmployeeHoursTotal] )
)
VAR vAllocationTable =
ADDCOLUMNS ( vPercentTable, "@Allocation", [@Percent] * Employee[Labor Cost] )
VAR vResult =
SUMX ( vAllocationTable, [@Allocation] )
RETURN
vResult
3. Create visual using Customer[Customer ID]:
Proud to be a Super User!
Yes, this is very clear and works perfectly. Thanks!
Try this solution.
1. Data model:
2. Measures:
Billable Hours = SUM ( LaborHours[Billable Hours] )
Non-Billable Hours = SUM ( LaborHours[Non-Billable Hours] )
Allocated Labor Cost =
VAR vBaseTable =
ADDCOLUMNS (
SUMMARIZE (
LaborHours,
Customer[Customer ID],
Employee[Employee ID],
Employee[Labor Cost]
),
"@CustomerHours", [Billable Hours] + [Non-Billable Hours]
)
VAR vEmpHoursTable =
ADDCOLUMNS (
vBaseTable,
"@EmployeeHoursTotal", CALCULATE ( [Billable Hours] + [Non-Billable Hours], ALL ( Customer ) )
)
VAR vPercentTable =
ADDCOLUMNS (
vEmpHoursTable,
"@Percent", DIVIDE ( [@CustomerHours], [@EmployeeHoursTotal] )
)
VAR vAllocationTable =
ADDCOLUMNS ( vPercentTable, "@Allocation", [@Percent] * Employee[Labor Cost] )
VAR vResult =
SUMX ( vAllocationTable, [@Allocation] )
RETURN
vResult
3. Create visual using Customer[Customer ID]:
Proud to be a Super User!
Yes, this is very clear and works perfectly. Thanks!
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 42 | |
| 35 | |
| 35 | |
| 21 | |
| 15 |
| User | Count |
|---|---|
| 65 | |
| 58 | |
| 28 | |
| 27 | |
| 25 |