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.
Hello PBI Experts,
I have two Tables connected through ID Column
Attaching Screenshot --
I have two slicers in my Page
City
Name
As per the direction city slicer will not filter the Name Slicer and i don't want bidirectional Relationship so i use the Visual level filter under Name (where Sales is not Blank) and not it is working but when i remove the selected value from first slicer, all values are not coming in the other slicer. (Only A and S are coming in Name Slicer.
Can we achieve this without BI-directional Relationship?
Solved! Go to Solution.
Hi @Prarabdha_07,
Try to modify your visual level filter measure to:
filterSlicer =
IF(
ISFILTERED(Many[City]),
INT(NOT ISEMPTY(Many)),
1
)
Hi @Prarabdha_07,
Try to modify your visual level filter measure to:
filterSlicer =
IF(
ISFILTERED(Many[City]),
INT(NOT ISEMPTY(Many)),
1
)