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

The ultimate Microsoft Fabric, Power BI, Azure AI & SQL learning event! Join us in Las Vegas from March 26-28, 2024. Use code MSCUST for a $100 discount. Register Now

Reply
connork
Helper I
Helper I

Calculated Measure Totals

DAX is not exact here (actual data much messier) but example as follows:

Goal: get subtotal of overtime hours by employee AND dept as of as of 5/2/17 (assume DATA1 ends here)

 

 

 

 

Data sets: 

Data1: actual hours by employee by day

REF1: working days list by date

REF2: employee standard working hours per day

 Calculated Measures

FTE%  = IFERROR( REF2[STD_HRS]/8,0)

REGHRS = REF1[WORKDAY] * 8 * [FTE%]

OT HRS = IF(  CALCULATE(SUM(DATA1[HOURS]) - [REGHRS]>0,   CALCULATE(SUM(DATA1[HOURS])-[REGHRS],  0)

Result: Subtotals/grand totals for OT hrs are calculating based on subtotals, need sum of above. 

 

Any help on how to change the OT Hrs measure to correctly get subtotals is appreciated

1 ACCEPTED SOLUTION
Anonymous
Not applicable

The standard technique for "my subtotals are wrong" is "wrap it in a sumx".

 

Total OT=SUMX(Employees, [OT Hrs])

 

Since [OT Hrs] is correct on a per employee basis, you can just walk all employeeds adding up their OT Hrs...

View solution in original post

1 REPLY 1
Anonymous
Not applicable

The standard technique for "my subtotals are wrong" is "wrap it in a sumx".

 

Total OT=SUMX(Employees, [OT Hrs])

 

Since [OT Hrs] is correct on a per employee basis, you can just walk all employeeds adding up their OT Hrs...

Helpful resources

Announcements
March Fabric Community Update

Fabric Community Update - March 2024

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

Fabric Community Conference

Microsoft Fabric Community Conference

Join us at our first-ever Microsoft Fabric Community Conference, March 26-28, 2024 in Las Vegas with 100+ sessions by community experts and Microsoft engineering.

Fabric Partner Community

Microsoft Fabric Partner Community

Engage with the Fabric engineering team, hear of product updates, business opportunities, and resources in the Fabric Partner Community.