Forum Discussion
ALLSELECTED Duplicating Table Output
- 6 years ago
hi steveplatz
You could just adjust it as below:
Step1:
Adjust the formula as below:
New MaxSelectedSales = CALCULATE(MAX(FactSales[Sales]),ALLSELECTED(FactSales),VALUES(DimMarket[MarketName]))Step2:change the cross filter direction from "Single" to "Both"Result:
and here is sample pbix file, please try it.
Regards,
Lin
kentyler Thanks for the detailed response. That makes sense and works if I'm looking for the max per market, but what I'm trying to accomplish is to get the MAX value of all selected records, taking any outside filters into account. This is a simplified example with only the IsCurrent and Market filters, but there could be much more.
Do you know how I would accomplish that?
You can change to ALLSELECTED
- steveplatz6 years agoFrequent Visitor
This works when filtered to a specific market, but not when all markets are displayed. I changed the MAX for "Market 2" to be different than Market 1 and get this result:
What I'd like to see is 140 for every cell in MaxSelectedSales2.
- kentyler6 years agoSolution Sage
Maybe you need to remove the filter on just one market in line 3.