Forum Discussion

emmawdmi22's avatar
emmawdmi22
Icon for Helper I rankHelper I
3 years ago
Solved

Average of Sum Measure

I need an average of the max of sums.
  • MohammadLoran25's avatar
    MohammadLoran25
    3 years ago

    emmawdmi22 

    Follow:

    1-Creating a measure:

     

    SUMMeasure=SUM('Table'[PowerData])

     

    2-Then the measure below is what you want:

     

    AVGMeasure=AVERAGEX(
    VALUES(Table[Date]),
    [SUMMeasure]
    )