Forum Discussion

android1's avatar
android1
Post Patron
9 years ago

Calculating Average YTD

Hi,

 

I want to calculate the average hours worked by Carer YTD . I am using the measure TotalHours average per CarerName =
AVERAGEX(
KEEPFILTERS(VALUES('vw_PivotWagesHrs'[CarerName])),
CALCULATE(SUM('vw_PivotWagesHrs'[TotalHours]))

 

This gives me what I want if I choose a particular week from a slicer. (TotalHours/Count of Carers)

 

 

 

Problem is when I don't have a Week selected. I get:

 

 

So it's only dividing TotalHours (303.69 for e.g) by 13 when it should be sum of count of carers.

 

How do I account for this in my measure?

 

Thanks,

 

Gerry

1 Reply

  • v-ljerr-msft's avatar
    v-ljerr-msft
    Microsoft Employee

    Hi android1,


    So it's only dividing TotalHours (303.69 for e.g) by 13 when it should be sum of count of carers.


    I'm not sure I understand your requirement totally. So the expected result(303.69 for e.g) should be 3947.98/(13+16+22+23+24+26+27) ?

     

    In addition, could you also post your real table structures with some sample data? So that we can better assist on this issue. :smileyhappy:

     

    Regards