Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
I'm trying to get that table to not show anything until it is being filtered by either the DESCR slicer or the Map being clicked on, because otherwise it's 11k+ entries. I feel like I must be missing something...
Solved! Go to Solution.
hi @dpiechowski
You could just adjust the formula as below:
m.Hide? =
IF (
CALCULATE ( ISFILTERED ( INVENTORY_BIN[DESCR] ), ALLSELECTED ( INVENTORY_BIN ) ),
1,
IF (
CALCULATE ( ISFILTERED ( BIN_LIST[Zone/Tower] ), ALLSELECTED ( BIN_LIST ) ),
1,
0
)
)
Then it will work.
Regards,
Lin
hi @dpiechowski
You could just adjust the formula as below:
m.Hide? =
IF (
CALCULATE ( ISFILTERED ( INVENTORY_BIN[DESCR] ), ALLSELECTED ( INVENTORY_BIN ) ),
1,
IF (
CALCULATE ( ISFILTERED ( BIN_LIST[Zone/Tower] ), ALLSELECTED ( BIN_LIST ) ),
1,
0
)
)
Then it will work.
Regards,
Lin
This works beautifully. Thanks
@dpiechowski , see if you can use it using the bookmark
https://radacad.com/bookmarks-and-buttons-making-power-bi-charts-even-more-interactive
I think I figured it out.
It seems like if the ISFILTERED measure is checking any of the columns that are in the table it doesn't work.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.