Forum Discussion

simonfalun's avatar
simonfalun
Frequent Visitor
9 years ago
Solved

Calculating an average by person

I've been searching over and over, but I can't find the solution - so I'm afraid that there isn't any solution to this.

I have a table ("Time reports") with all reporting for our employes, grouped by Person and Date. The table looks like this example:

 

DatePersonBilled hours
2017-04-12Joe5
2017-04-13Joe8
2017-04-13Chris8,5
2017-04-13Dave6
2017-04-13Martin5
2017-04-14Chris7
2017-04-14Dave4
2017-04-14Martin5
2017-04-15Joe8
2017-04-15Chris8
2017-04-15Dave6
2017-04-16Martin9
2017-04-17Joe8
2017-04-17Chris8
2017-04-17Dave6
2017-04-17Martin5

 

I want to calculate the average of hours/day for each person individually. The average should be over the latest 10 reported days, per person.
Every person doesn't have reports for every day, so the latest 10 reported days won't be the same for every person.

 

In any other language I would have accompliced this by looping through the persons and count 10 days from a descending list - but how do I do in DAX or Power Query!?


One thought was to calculate this in the SQL-server - BUT, the table is merged from multiple data sources (Both SQL and Excel since we have multiple systems for time reporting) and each person can occur in both data sources.

  • Assuming you only have the 'Person' on rows, then while i have not tested it this should work:

     

     

     

    Avg per Person last 10 reported days = 
    CALCULATE ( AVERAGE ( 'Time Reports'[Billed Hours] ); TOPN ( 10, VALUES ( 'Time Reports'[Date] ); LASTDATE ( 'Time Reports'[Date] ) ) )

     

3 Replies

  • Assuming you only have the 'Person' on rows, then while i have not tested it this should work:

     

     

     

    Avg per Person last 10 reported days = 
    CALCULATE ( AVERAGE ( 'Time Reports'[Billed Hours] ); TOPN ( 10, VALUES ( 'Time Reports'[Date] ); LASTDATE ( 'Time Reports'[Date] ) ) )

     

    • simonfalun's avatar
      simonfalun
      Frequent Visitor

      AWESOME! Thank you - you just turned my **bleep**ty day into a really great day!! :smileyvery-happy:

      I created a new table with only the persons and added a calculaded column with your code - worked like a charm!

       

      Next step for me is to analyze the code so I can understand how it works :smileyhappy:

       

      Have a great day everyone!