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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello Power Bi community
I have an issue with the slicer,
Basically i have a table with category, subcategory and payees
i have a slicer visual for payees
I have a table visual for subcategory and total amount
Now my issue i want when i select the subcategory in my table visual, i want the slicer to show only payees related to that subcategory
I tried visual interactions but payee is being fixed, like it doesnt filter based on subcategory selection in my table visual
but when i select something in payees ,it filters my table visual but not other way around
My data model and expense report are below
Thanks for any suggestions
expense data model
expense report
Solved! Go to Solution.
Thanks for the reply, appreciated
approach 1: as payees and categories and subcategories are in same table, this wont work
approach 3: Yes i tried it ,by putting subcategory as drillthrough in new page, this works, but i want my table visual to filter payees if i select any in the table visual
approach 2: it didnt work, the measure am not able to bring it into the slicer
yes this what i realised, as i tried another table visual instead of slicers with payee and it filtered properly, but when i change the payee table to slicer it doesnt filter
Hi @atallah,
We can address this issue with three approaches:
Approach 1: Use a Bidirectional Relationship
Approach 2: Create a Supporting Table
Create a Distinct Table for Payees:
Go to the Modeling tab in Power BI Desktop.
Click on New Table and enter the following DAX formula:
DAX
DistinctPayees = DISTINCT(Expenses[Payee])
FilteredPayees =
CALCULATE(
DISTINCT(Expenses[Payee]),
FILTER(
Expenses,
Expenses[SubCategory] IN VALUES(Expenses[SubCategory])
)
)
Approach 3: Use a Drillthrough Page
If you don't want to modify your data model:
You Can also refer to this Youtube Video:Link
I hope the provided solution works for you
If I have resolved your question, please consider marking my post as a solution. Thank you!
A kudos is always appreciated—it helps acknowledge the effort and keeps the community thriving.