Forum Discussion
CJ_96601
Helper V
4 years agoMaximum 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...
- 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.
- 4 years ago
You can visualise it like this: