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:
PC2790
Community Champion
4 years agoI 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.
CJ_96601
Helper V
4 years agoThanks.
this is the result i was looking for.
Now, what if i would like to get with code "BS" only.
Below sample refer.
| BN | AMOUNT | Code |
| 1 | 1000 | BS |
| 1 | 2000 | BS |
| 1 | 3000 | H |
| 2 | 1000 | BS |
| 3 | 2000 | BS |
| 4 | 3000 | BS |
| 2 | 3000 | H |
| 3 | 4000 | BS |
| 4 | 4000 | BS |
| 1 | 500 | BS |
| 3 | 3500 | H |
| 5 | 4500 | BS |