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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Rodney2022
New Member

Average hours worked split by job title

Hi

 

Hoping someone can help!

 

We need some help with a calculation in Power BI to show average hours worked per day for each job title. For example,

 

Date range: 1 December - 31 Demcember

 

Job title

Worked hours (sum)

Average hours per day

Level 1

100

?

Level 2

150

?

Level 3

200

?

Level 4

150

?

 

Is it possible to put in a formula that counts the number of people at each level and then works out the average hours per day in a set time frame (that updates when we amend the date slicer)?

 

Please let me know if you need any further information and many thanks in advance for your help!

1 ACCEPTED SOLUTION
v-kkf-msft
Community Support
Community Support

Hi @Rodney2022 ,

 

You need to have a Calendar table and mark in the table whether it is a weekday or not, like this:

 

vkkfmsft_1-1641540364211.png

 

Then try the following measure.

 

Measure = 
DIVIDE( 
    SUM('Table'[Worked hours]),
    COUNTROWS( FILTER( 'Calendar', 'Calendar'[IsWeekday] = TRUE() ) )
)

vkkfmsft_0-1641540337653.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

5 REPLIES 5
v-kkf-msft
Community Support
Community Support

Hi @Rodney2022 ,

 

You need to have a Calendar table and mark in the table whether it is a weekday or not, like this:

 

vkkfmsft_1-1641540364211.png

 

Then try the following measure.

 

Measure = 
DIVIDE( 
    SUM('Table'[Worked hours]),
    COUNTROWS( FILTER( 'Calendar', 'Calendar'[IsWeekday] = TRUE() ) )
)

vkkfmsft_0-1641540337653.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.
Best Regards,
Winniz
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

VahidDM
Super User
Super User

Hi @Rodney2022 

 

Does your report have a Date Table? Can you share a sample of your data in a text format?

 


Appreciate your Kudos!!
LinkedIn: 
www.linkedin.com/in/vahid-dm/

 

 

Rodney2022
New Member

To be able to add a table to our dashboard that shows worked hours per day by level/job title for the selected time period.

 

Fo example - from 1 December - 31 December, level 1's worked an average of 6.5 hours per day (based on working days in that month).

@Rodney2022  from 2021-12-01 - 2021-12-31 the number of working days are 22 (

Excluded 4 Saturdays

Excluded 4 Sundays).

 

So the result should 100/22=4.5.

 

How are you getting 6.5?

 

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs
smpa01
Super User
Super User

@Rodney2022  what is the expected ouput for the given data?

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors