Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Monthly average without accumulated

I would like to calculate the average of the monthly data obtained from some daily data. I don't want the daily accumulated data to be displayed, but to obtain the monthly average of all the data.


When I apply the daily filter, I have the correct value but when I apply the monthly filter it shows me the accumulation of all days.

 

Thanks in advance for your help

  • Anonymous , Try like

     

    Avg Sales = CALCULATE(Averagex(Values('Date'[Date]) , calculate(SUM(Sales[Sales Amount]))) ,DATESMTD('Date'[Date]))

  • Anonymous's avatar
    Anonymous
    4 years ago

    I have solved it by changing the dates of the month that was giving me problems.

3 Replies

  • Anonymous , Try like

     

    Avg Sales = CALCULATE(Averagex(Values('Date'[Date]) , calculate(SUM(Sales[Sales Amount]))) ,DATESMTD('Date'[Date]))

  • Anonymous's avatar
    Anonymous
    Not applicable

    Thanks amitchandak .

    I got the following error when I used this measure. That's happening only during the month of september. 

     

    Do you know why I have this error?

    • Anonymous's avatar
      Anonymous
      Not applicable

      I have solved it by changing the dates of the month that was giving me problems.