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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi all,
I would like to ask for your help or some suggestions to manage a situation. Let me explain better:
I have two filters, area and project. The area is a dropdown filter with multiple selections; The project is a radio button filter. Both are already selected as they should not show cumulative data but granular data.
In my scenario, I need to change the project selection based on the area and ensure that the project from the previous area does not remain in the list.
Could you kindly suggest a guide or a workaround to meet this requirement?
Thank you for your time.
Best regards
Hi , Please Try these
Apply this measure to the Project slicer as a filter (FilterProjects = 1).
Use Sync Slicers to link the Area and Project slicers, ensuring previous selections are cleared.
If this post helped please do give a kudos and accept this as solution
Thanks In Advance
Hi @AnaMariaDe
Unfortunately, as of now, Power BI does not support automatically clearing slicer selections based on changes in another slicer. To handle this scenario, you'll need to train users to manually click the "Clear Selection" (eraser) icon on the slicer to reset the filters.
However, there is an active feature request on this topic in the Power BI Ideas forum. I recommend voting for it to help prioritize its implementation:
https://ideas.fabric.microsoft.com/ideas/idea/?ideaid=ec054bc8-beaa-ec11-826e-501ac50a5d5c
I voted + shared with my colleagues.
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly.
Hi @AnaMariaDe ,To achieve dynamic slicer behavior in Power BI where the selection in one slicer (Area) influences another slicer (Project), you can use the following approaches:
Create a relationship:
Apply cross-filtering:
This ensures that selections in the Area slicer automatically filter the available options in the Project slicer.
If direct relationships don't work due to model complexity or other constraints:
Use a DAX measure to dynamically filter the Project slicer based on the Area slicer selection.
Example:
FilteredProjects =
CALCULATE(
DISTINCT('Project'[ProjectName]),
FILTER('Table', 'Table'[Area] IN VALUES('Area'[Area]))
)
Add the measure to your visual or slicer:
Replace the default Project slicer field with this calculated measure.
If you need greater control:
Please mark this as solution if it helps you. Appreciate Kudos.
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 |
|---|---|
| 103 | |
| 80 | |
| 59 | |
| 51 | |
| 46 |