- Comments (11)
Comments (11)
RE: Slicer Select All vs Select None
Note that without Select All showing I can achieve the desired result using a measure like this as a filter on the associated visualizations:
MySlicer = IF (
ISFILTERED('MyTable'[MyColumn]),
"Y",
"N"
)
where 'MyTable'[MyColumn] is what is used for the values in the slicer.