Forum Discussion
Filtering using Switch / IF
- Anonymous2 years ago
Hi ExcelMonke
You can refer to the following solution
Sample data
1.You can create a slicer table
2.Create a measure and put it to the visual filter
Measure = IF ( ISFILTERED ( 'Slicer'[Column1] ), IF ( OR ( SELECTEDVALUE ( 'Slicer'[Column1] ) = "default" && SELECTEDVALUE ( 'Table'[Column2] ) = "default", SELECTEDVALUE ( 'Slicer'[Column1] ) = "all" ), 1, 0 ), 1 )Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I think you're making this more complicated than need be.
Simply create a Slicer Visual and drag this column. This will act as your Slicer
Be sure to turn on the Select All option:
Will this solve your issue?
Regards,
- ExcelMonke2 years ago
Impactful Individual
Thanks for the suggestion - I am actually hoping to do a single select option rather than a multi-select.
- rsbin2 years ago
Community Champion
- ExcelMonke2 years ago
Impactful Individual
I don't think I was explaining what I was hoping for clearly.
I want two single-click options:- Filters to all "Default" values
- Return all values are returned that are both "Default" AND "Not Default"
i.e. one option to select default values, one option to effectively "select all"