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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Anonymous
Not applicable

Calculating the number of days worked per person but with multiple lines per day

Hi All,

 

I'm looking to create a measure that counts the number of days a worker has worked in a period. This would be easy enough but the data is set up so that if a worker does enough hours to get overtime, there will be a new line for each over time rate as below:

 

 

WorkerDateRateHours
Tom23/06/20221.5x1
Tom23/06/20221x4
John23/06/20221x8
John23/06/20221.5x2
John21/06/20221x6
John22/06/20221x7

 

In this example Tom would have worked 1 day and John 3 days.

 

The end goal is working out the average number of days worked over a period, so in this example the average days worked would be 2 days. We could then track this over the entire workforce in a line graph for example.

 

Is this possible in DAX?

1 REPLY 1
amitchandak
Super User
Super User

@Anonymous , Try like

averagex(Values(Table[Worker]), calculate( Countrows(Summarize(Table, Table[Worker], Table[Date]))))

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.