Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hello!
I am attempting to use slicers as visualization titles, that when selected pulls the location into the corresponding table. I am running into issues when selecting more than one, presumably the table is treating the slicers as an 'and' rather than 'or'. Any thoughts or ideas on how to get this to work?
Thank you!
Ky
Solved! Go to Solution.
Hi @kylefox101 ,
Is this you want?
If yes, please create a new table via values('fact table'[category]) for one slicer. if two slicers then two tables.
Then create measure like the following and put it in filter pane and set it show items when is 1.
Measure =
IF (
SELECTEDVALUE ( 'Table'[Category] )
IN VALUES ( Slicer1[Category] )
|| SELECTEDVALUE ( 'Table'[Category] ) IN VALUES ( Slicer2[Category] ),
1
)
Pbix in the end you can refer.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @kylefox101 ,
Is this you want?
If yes, please create a new table via values('fact table'[category]) for one slicer. if two slicers then two tables.
Then create measure like the following and put it in filter pane and set it show items when is 1.
Measure =
IF (
SELECTEDVALUE ( 'Table'[Category] )
IN VALUES ( Slicer1[Category] )
|| SELECTEDVALUE ( 'Table'[Category] ) IN VALUES ( Slicer2[Category] ),
1
)
Pbix in the end you can refer.
Best Regards
Community Support Team _ chenwu zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Not clear what your issue is. Generally you use CONCATENATEX() to gracefully handle situations where more than one value is selected.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 29 | |
| 23 | |
| 18 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 51 | |
| 44 | |
| 43 | |
| 39 | |
| 33 |