Forum Discussion

ggzmorsh's avatar
ggzmorsh
Icon for Helper II rankHelper II
7 years ago
Solved

Average of total values between dates

I have a table where it displays date values from a slicer and their total amounts.

I used a measure to calculate the average of those totals between the date selected.

Instead it is giving me the average of the totals per day.

 

Accept average per Date =
AVERAGEX(KEEPFILTERS(VALUES('Calendar Date'[Date])), CALCULATE([Total Accept]))
 
Accept average per DateDate
207609/01/2019
154109/02/2019
180209/03/2019
153609/04/2019
134809/05/2019
192909/07/2019
155909/08/2019
195209/09/2019
142109/10/2019
1685The average of totals

 

What measure should i use to get this result:

 

Accept average per DateDate
207609/01/2019
154109/02/2019
180209/03/2019
153609/04/2019
134809/05/2019
192909/07/2019
155909/08/2019
195209/09/2019
142109/10/2019
1516The sum of totals per day divided by number days between selected dates. or average of total per days.
  • Hi ggzmorsh ,

    If I understand your requirement correctly that you want to calculate the average for the selected date range.

    If so, please refer to the measures below.

    interval days =
    VAR maxday =
        MAX ( 'Table'[Date] )
    VAR minday =
        MIN ( 'Table'[Date] )
    RETURN
        DATEDIFF ( minday, maxday, DAY ) + 1
    
    Average =
    VAR total =
        CALCULATE ( SUM ( 'Table'[Value] ), ALLSELECTED ( 'Table' ) )
    RETURN
        DIVIDE ( total, [interval days] )
    

    Here is the output.

    More details, you also could refer to my attachement.

    If you still need help, please share your desired output so that we could help further on it.

    Best Regards,

    Cherry

     

2 Replies

  • v-piga-msft's avatar
    v-piga-msft
    Icon for Resident Rockstar rankResident Rockstar

    Hi ggzmorsh ,

    If I understand your requirement correctly that you want to calculate the average for the selected date range.

    If so, please refer to the measures below.

    interval days =
    VAR maxday =
        MAX ( 'Table'[Date] )
    VAR minday =
        MIN ( 'Table'[Date] )
    RETURN
        DATEDIFF ( minday, maxday, DAY ) + 1
    
    Average =
    VAR total =
        CALCULATE ( SUM ( 'Table'[Value] ), ALLSELECTED ( 'Table' ) )
    RETURN
        DIVIDE ( total, [interval days] )
    

    Here is the output.

    More details, you also could refer to my attachement.

    If you still need help, please share your desired output so that we could help further on it.

    Best Regards,

    Cherry