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 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"
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.