Forum Discussion
khappersett
8 years agoResolver I
Ignore Row Context in Measure
I am trying to return the maximum catalog date based on a certain slicer, but ignoring all other filters and row context. I am using the below measure: most recent test = CALCULATE(MAX('Catalog D...
- 8 years ago
HI khappersett
I think you need to clear the filter context on the Wholesale ID field. Try adding that field to your ALLEXCEPT function as a third parameter.
Phil_Seamark
8 years agoMicrosoft Employee
HI khappersett
I think you need to clear the filter context on the Wholesale ID field. Try adding that field to your ALLEXCEPT function as a third parameter.
khappersett
8 years agoResolver I
Thank you so much!!!!! That worked! This is the code I used:
most recent test = CALCULATE(MAX('Catalog Detail'[Release Date]), ALLEXCEPT('Catalog Detail','Catalog Detail'[Common Catalog Name]), ALL('Account Detail'))- Phil_Seamark8 years agoMicrosoft Employee
Cool. Is 'Account Detail' the same field as 'Wholesale ID' ?
- khappersett8 years agoResolver I