Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

Previous Quarter Calculation

How can I write Dax that will give me the average of Quarter 1's numbers below?:   It's tricky because when using the AVERAGE function, I'm not allowed to select my [Retention] measure for ...
  • Greg_Deckler's avatar
    8 years ago

    Try AVERAGEX, something like:

     

    Measure = AVERAGEX(FILTER('Table',[Year]=2018 && [Quarter]="Qtr 1"),[Retention])