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
Hi all. I have a report with close to 50 pages, and there are a couple of slicers on the configuration page that impact all the other pages, just as I want.
However, I want to add a couple of visuals on one of the pages that are independent of one of the slicers on the configuration page. I can't use 'edit interactions' as when I select the slicer it only gives me the option for visuals on that same page, whereas I want to disconnect it from a visual on another page. Any suggestions?
Solved! Go to Solution.
Hi @sbott ,
In Power BI, when you want a slicer on one page (like a configuration page) to filter most visuals across your report but not affect certain visuals on a different page, the built-in “Edit Interactions” tool won’t help because it only applies within the same page. To get around this limitation, you can modify the DAX measures used in those specific visuals so they explicitly ignore the slicer filter.
For example, if your slicer filters by the [Region] column and you want a visual to ignore that filter, you can write your measure using REMOVEFILTERS like this:
Sales_Ignore_Region =
CALCULATE(
SUM(Sales[Amount]),
REMOVEFILTERS(Sales[Region])
)
This approach ensures that the measure will calculate the sales amount without applying any filters from the [Region] slicer—even if it’s selected on a different page.
Alternatively, if your slicer uses a disconnected table (which is often done on configuration pages), you can avoid using that slicer altogether by not incorporating any logic that references it in your measure. If the slicer is based on a custom disconnected table called 'DisconnectedRegion', and most visuals use something like this:
Sales_With_Region_Filter =
CALCULATE(
SUM(Sales[Amount]),
FILTER(
Sales,
Sales[Region] = SELECTEDVALUE('DisconnectedRegion'[Region])
)
)
Then for the visuals you want unaffected, just use a basic measure that doesn’t refer to 'DisconnectedRegion':
Sales_Ignore_Config_Slicer =
SUM(Sales[Amount])
This way, that particular visual will not respond to the slicer on the configuration page.
Best regards,
Hi @sbott ,
In Power BI, when you want a slicer on one page (like a configuration page) to filter most visuals across your report but not affect certain visuals on a different page, the built-in “Edit Interactions” tool won’t help because it only applies within the same page. To get around this limitation, you can modify the DAX measures used in those specific visuals so they explicitly ignore the slicer filter.
For example, if your slicer filters by the [Region] column and you want a visual to ignore that filter, you can write your measure using REMOVEFILTERS like this:
Sales_Ignore_Region =
CALCULATE(
SUM(Sales[Amount]),
REMOVEFILTERS(Sales[Region])
)
This approach ensures that the measure will calculate the sales amount without applying any filters from the [Region] slicer—even if it’s selected on a different page.
Alternatively, if your slicer uses a disconnected table (which is often done on configuration pages), you can avoid using that slicer altogether by not incorporating any logic that references it in your measure. If the slicer is based on a custom disconnected table called 'DisconnectedRegion', and most visuals use something like this:
Sales_With_Region_Filter =
CALCULATE(
SUM(Sales[Amount]),
FILTER(
Sales,
Sales[Region] = SELECTEDVALUE('DisconnectedRegion'[Region])
)
)
Then for the visuals you want unaffected, just use a basic measure that doesn’t refer to 'DisconnectedRegion':
Sales_Ignore_Config_Slicer =
SUM(Sales[Amount])
This way, that particular visual will not respond to the slicer on the configuration page.
Best regards,
Many thanks, that is really helpful. Have a great weekend.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 58 | |
| 45 | |
| 42 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 172 | |
| 107 | |
| 92 | |
| 54 | |
| 46 |