Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have a data set with person number, week number, and hours worked for that day. I'm trying to calculate the average number of hours per week each employee worked, and then be able to group the COUNT of personIDs with the same number of average number of hours worked. Essentially answering the question, how many employees worked an average of 8 hours per week.
I was able to calculate the average number of hours per week per employee, but when I tried to map it to a table with count of person ID it did not work at all.
My calculation for average hours per weeks looks like this...
PersonID | WeekNumber | HoursWorked |
0023 | 1 | 8 |
0023 | 1 | 6 |
0023 | 4 | 9 |
0023 | 4 | 4 |
0023 | 6 | 2 |
0023 | 6 | 6 |
0023 | 6 | 6 |
0023 | 6 | 3 |
0025 | 1 | 8 |
0025 | 1 | 6 |
0025 | 4 | 4 |
0027 | 4 | 2 |
0027 | 4 | 5 |
0029 | 2 | 7 |
0029 | 2 | 8 |
0029 | 6 | 2 |
Hi, unfortunately a measure can't be used in the same way as a column. In this case I suggest that you create a new calculated table with the average hours by PersonID. You can do that by wrapping your own measure in a SUMMARIZE like this: