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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi,
I have a simple database with two columns:
Items Category
Item 1 A
Item 2 B
Item 3 C
I want to filter the rows using a slicer, so when i filter by "A", item 1 shows. When i filter by "B" item 1 and 2 shows, and when I filter by "C" item 1, item 2 and item 3 shows. In other words, I want to include additional filters when I filter by "Categories", depending on the category chosen.
Does anyone know how to do this? Let me know if you need a better explanation 🙂
Solved! Go to Solution.
Hi @Anonymous ,
I create a measure and a index column to implement you can have a try.
Filter = var selc = SELECTEDVALUE(Table2[Category]) var selind =CALCULATE(MAX(Table1[Index]),FILTER(ALL(Table1),Table1[Category] = selc)) return IF(MAX(Table1[Index])<=selind, MAX(Table1[Items]),BLANK())
Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
I create a measure and a index column to implement you can have a try.
Filter = var selc = SELECTEDVALUE(Table2[Category]) var selind =CALCULATE(MAX(Table1[Index]),FILTER(ALL(Table1),Table1[Category] = selc)) return IF(MAX(Table1[Index])<=selind, MAX(Table1[Items]),BLANK())
Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.