select all
1 Topicalternative to ISFILTERED when Select All is used
I have a measure I'm using to limit the data that appears on a map visual. It looks like this: ShowMap = VAR UnitFilter = IF( ISFILTERED('Pool View'[UNIT]) ,1 ,0) VAR TierFilter = IF(ISFILTERED('Pool View'[TIER]) ,1 ,0 ) VAR StateFilter = IF(ISFILTERED('Pool View'[STATE]) ,1 ,0 ) VAR FilterSum = UnitFilter + TierFilter + StateFilter RETURN IF(FilterSum = 3,"Y","N") Trouble arises when someone uses Select All in the Tier filter. There are six values there, and I'm trying to avoid having my users individually select all the values when they want to include them all. What's a good substitue for ISFILTERED when Select All is in play? Thanks.Solved2.8KViews0likes1Comment