Forum Discussion

AkrMus's avatar
AkrMus
Icon for Helper I rankHelper I
7 years ago
Solved

Average with Group by DAX

Hi I have this data   myRate | myDate 7           | 1 Feb 2019 3           | 14 Feb 2019 9           | 1 Feb 2019 4           | 4 Mar 2019 6           | 11 Apr 2019 3           | 13 Mar 2019...
  • v-lili6-msft's avatar
    v-lili6-msft
    7 years ago

    hi, AkrMus 

    If you want it could be filtered by myRate , just try this formula

    Measure = calculate(average( 'Table'[myRate]), FILTER(ALLSELECTED('Table'),'Table'[Month]=MAX('Table'[Month])))

    Result:

     

    Best Regards,

    Lin