Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
smsat
Frequent Visitor

Calculate average of same day across each year in data set

I have a data set of 6 years of data. 

I want to create a column to calculate the average of "% of EOM" for each of the 6 years on that day.

e.g. for 31st December it would calc the average of % of EOM across these dates 31/12/18, 31/12/17, 31/12/16, 31/12/15. 31/12/14, 31/12/13 

I've been scratching my head and can't work it out - any help much appreciated!

 

Capture.GIF

1 ACCEPTED SOLUTION

Hi @smsat ,

 

AVG_%_of_EOM =
CALCULATE (
    AVERAGE ( Test_2[% of EOM] ),
    FILTER (
        ALLSELECTED ( Test_2 ),
        FORMAT ( Test_2[Date], "MMM dd" ) = FORMAT ( MAX ( Test_2[Date] ), "MMM dd" )
    )
)

1.PNG

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-yulgu-msft
Employee
Employee

Hi @smsat ,

 

Please try this measure:

Average =
CALCULATE (
    AVERAGE ( Table[% of EOM] ),
    ALLEXCEPT ( Table, Table[Date].MONTH, Table[Date].DAY )
)


Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks very much for the reply @v-yulgu-msft 

That hasn't quite worked.  It's produced the same % in every row, I can't quite work out what it has averaged to get to 55.79%.

Ideally what I'm looking for it to do is for each row to average all other years on that date, e.g. on any row with date 31 December it will average

31/12/18  102.6%

31/12/17  62.8%

31/12/16 66.9%

31/12/15  73% 

31/12/14   70%

31/12/13   82.2%

and the "This Date Average" column for every 31st December will show = 76.25%

 

This value will be different for 30 December, 29 December, etc.

 

Capture.GIF

Hi @smsat ,

 

AVG_%_of_EOM =
CALCULATE (
    AVERAGE ( Test_2[% of EOM] ),
    FILTER (
        ALLSELECTED ( Test_2 ),
        FORMAT ( Test_2[Date], "MMM dd" ) = FORMAT ( MAX ( Test_2[Date] ), "MMM dd" )
    )
)

1.PNG

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Excellent, thank you very much indeed.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.