Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have a scenario where I want to list a table of stores filtered by one level higher hierarchy than the store selected.
So normal, slicer interaction, the user selects the store from slicer and the table is filtered to that store:
but I want the table to display all stores in the selected store's area, not just the single store. Like this:
How do I accomplish this?
Solved! Go to Solution.
You could create a disconnected copy of the stores and areas for use in the slicer, e.g.
Table for slicer = SUMMARIZE( 'Table', 'Table'[Store], 'Table'[Area])
Use the store column from this new table on the slicer, then create a measure like
Store is visible =
IF (
SELECTEDVALUE ( 'Table'[Store] )
IN CALCULATETABLE (
VALUES ( 'Table'[Store] ),
TREATAS ( VALUES ( 'Table for slicer'[Area] ), 'Table'[Area] )
),
1
)
and add that as a visual level filter to your table, set to show only when the value is 1.
That worked perfectly! Thanks
You could create a disconnected copy of the stores and areas for use in the slicer, e.g.
Table for slicer = SUMMARIZE( 'Table', 'Table'[Store], 'Table'[Area])
Use the store column from this new table on the slicer, then create a measure like
Store is visible =
IF (
SELECTEDVALUE ( 'Table'[Store] )
IN CALCULATETABLE (
VALUES ( 'Table'[Store] ),
TREATAS ( VALUES ( 'Table for slicer'[Area] ), 'Table'[Area] )
),
1
)
and add that as a visual level filter to your table, set to show only when the value is 1.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 61 | |
| 44 | |
| 41 | |
| 36 | |
| 21 |
| User | Count |
|---|---|
| 176 | |
| 120 | |
| 106 | |
| 77 | |
| 52 |