Forum Discussion
Page Level filter
- 1 year ago
Hi Omega ,
Thanks for reaching out to the Microsoft fabric community forum.
Thanks for your prompt response
Workaround implemented:
To solve this, I’ve used a disconnected slicer tableI have uploaded the PBIX file here for your reference.
If you’re still experiencing any issues, please feel free to let us know we’ll be happy to assist you further.
Looking forward to your response.
If this post helped resolve your issue, please consider marking it as the Accepted Solution. Doing so not only acknowledges the support provided but also helps other community members find relevant solutions more easily.
We appreciate your engagement and thank you for being an active part of the community.
Best regards,
LakshmiNarayana.
If ALL, REMOVEFILTERS, VALUES, KEEPFILTERS, ALLEXCEPT, TREATAS, and ALLSELECTED can't help you ignore a Page-Level filter, then you're facing a scenario where DAX cannot override the page-level filter because it is already being enforced at the visualization layer before DAX is evaluated.
Page-level filters are enforced by the Power BI engine before your DAX code executes. This means DAX can't override or "see beyond" them — not even with functions like ALL or REMOVEFILTERS.
Solution 1: Move the page-level filter to a slicer (visual-level filtering)
If your goal is to exclude a certain visual from being affected:
- Remove the Page-level filter, and instead use a slicer (which gives more control).
- Then, for visuals that should ignore the slicer, go to the Visual Interactions settings:
- Click on the slicer ➝ Format tab ➝ Edit Interactions
- Set unwanted visuals to "None" so they ignore the slicer.
Solution 2. Use a Disconnected Table (if you want selective control)
You can create a disconnected filter table that mimics the original column:
DisconnectedDate = DISTINCT('Calendar'[Date])Then, create a measure using TREATAS():
Custom Measure =
CALCULATE(
[Your Measure],
TREATAS(VALUES('DisconnectedDate'[Date]), 'Calendar'[Date])
)
This bypasses the regular relationship-based filtering — and thus ignores any page-level filters applied to Calendar[Date].
If you found the above information helpful, I’d appreciate it if you could give us a Kudos and mark the response as the Accepted Solution.