Forum Discussion
Measure to overtime work
Hi everyone!
I have a database where each row is a time entry on a given day. I can have more than one entry for the same day per user.
| Resource | Date | Hours |
| Maria | 09/02/2020 | 8.0 |
| Maria | 10/02/2020 | 5.0 |
| Maria | 10/02/2020 | 5.0 |
| Marcos | 09/02/2020 | 10.0 |
| Marcos | 10/02/2020 | 6.0 |
| Marcos | 10/02/2020 | 6.0 |
With that, I created a matrix that shows the sum of hours worked per day by resource.
| Resource | 09/02/2020 | 10/02/2020 |
| Maria | 8.0 | 10.0 |
| Marcos | 10.0 | 12.0 |
I would like to show on a card how many hours each resource worked beyond 8h per day.
In the example, I would like to get the number 8.0 (2.0 hours from Maria and 6.0 from Marcos).
Any ideas on how I would do this?
Best regards
7 Replies
- Ashish_MathurSuper User
- AnonymousNot applicable
Hello Ashish_Mathur , thanks for your help. Worked like a charm.
But can you explain the concept behind the "ABCD"?
Tnks MartynRamsden , but your measure didn't work 😞
I need to study how to use variables in Power BI.
Also tnks amitchandak
I understood your thinking. The measure worked in a table, but the sum was wrong :S
- Ashish_MathurSuper User
Hi,
You are welcome. The SUMMARIZE function creates a virtual table. the third input in that function is the title of the new column that you want to give to the second column of that virtual table.
If my previous reply helped, please mark it as Answer.
- MartynRamsdenSolution Sage
Hi Anonymous
Try this measure:
Over 8hrs = VAR HoursWorked = SUM ( Table1[Hours] ) VAR Result = HoursWorked - 8 RETURN ResultBest regards,
Martyn
If I answered your question, please help others by accepting it as a solution.
- amitchandakSuper User
Please find the solutions at
https://www.dropbox.com/s/9i3e2wvpl3310bb/extrahours.pbix?dl=0
Work Hours = DISTINCTCOUNT(overtime[Date])*8 Diff = SUM(overtime[Hours])-[Work Hours]Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blog -
https://community.powerbi.com/t5/Community-Blog/Winner-Topper-on-Map-How-to-Color-States-on-a-Map-with-Winners/ba-p/890814
https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-trend/ba-p/882970
https://community.powerbi.com/t5/Community-Blog/Power-BI-Working-with-Non-Standard-Time-Periods/ba-p/881739
https://community.powerbi.com/t5/Community-Blog/Comparing-Data-Across-Date-Ranges/ba-p/823601