Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi DAX experts,
We have below table, Region is filter and Avg Yearly Sales is measure, (so it can return Avg Yearly Sales), if we select filter say, US+UK, then
Avg: 150
Max : 300,
But, what i want to calculate is Max(Avg), 200. But, what I am getting is 300. How can i do that?
Region | Avg Yearly Sales | Avg Quarterly Sales
US | 100 | [100,200,50,50]
UK | 200 | [ 100, 200, 300, 200]
AUS | 300 | [ 100, 200, 400, 500]
CAN | 400 | [ 200, 400, 600, 400]
more details:
I tried this formula:
CalculatedPeakToken = CALCULATE(MAX(Table[Avg Yearly Sales]), FILTER(ALLSELECTED(Table), Table[Region] IN ALLSELECTED( Table[Region])))
where
Avg Yearly Sales is calculated from measure. =
This always results: MAX across all quaterly sales.
Thanks,
Manju
Hi,
I do not know how your data model looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
I hope the below can provide some ideas on how to create a solution for your datamodel.
Avg yearly sales: =
AVERAGEX(Sales, Sales[Sales])
Max sales: =
MAXX( DISTINCT(Region[Region]), [Avg yearly sales:])
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
14 | |
10 | |
7 |