Forum Discussion

CJ_96601's avatar
CJ_96601
Icon for Helper V rankHelper V
4 years ago
Solved

Maximum and Average

Measure to get the maximum amount for each BN and then average the maximum amount.   Below is the sample data for reference.   BN AMOUNT 1 1000 1 2000 1 3000 2 1000 3 2000...
  • PC2790's avatar
    4 years ago

    I think you are looking for this:

    Average of Max values as per BN = AVERAGEX(SUMMARIZE(BNTable,BNTable[BN],"MaxBN",MAX(BNTable[AMOUNT])),[MaxBN])

    It gives an outcome of 3700 with the given data.

     

  • PC2790's avatar
    PC2790
    4 years ago

    You can visualise it like this: