Forum Discussion
AllExcept with Filtering
Thanks again for the response, unfortunately this is not quite giving me what I'm looking for. The issue I still have here is if the user makes changes to the slicers, I need the _FirstDate variable to refect these changes and update accordingly. So for example say we had a country field, if the user doesn't select anything, then this solution would work and provide me with the minimum date per customer, but if the user selects a specific country, I'd need _FirstDate to provide me with the minumum date per customer based on only the country(s) selected. (currently its still taking everything into account and ignoring the slicers) Hope that makes sense?
Just bumping this up incase anyone can assist
- Anonymous7 years agoNot applicable
First Order = VAR _FirstDate = CALCULATE ( MIN ( FactInternetSales[OrderDate] ), ALLSELECTED ( ) ) RETURN IF ( FactInternetSales[OrderDate] = _FirstDate, "yes", "no" )Try this measure, if it doesnt work then you will need to use the ALLSELECTED measure but adding any columns used as slicers to the exceptions