Forum Discussion

Seamie's avatar
Seamie
New Member
2 years ago
Solved

Single figure for average measure

This is my data (example): For each yearmo I want to get the sum of the score. I then want to get the average of those sums.   I have been able to achieve this using AVERAGEX as per below: ...
  • dk_dk's avatar
    dk_dk
    2 years ago

    Try creating a new measure like this:

    CALCULATE([Average of sums],REMOVEFILTERS('Scores Table'[yearmo]))

    And add that to the line chart. I hope this helps.