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 All,
If i select a specific value in filter for eg. 6 in below screenshot then the bar chart need to be displayed, if some thing else is selected then the bar chart shouldn't display, it need to get hide.
which Power BI function will be helpful?
Thanks
Solved! Go to Solution.
HI @Anonymous,
Maybe you can consider to add more conditions to that formula:
Measure 2 = IF ( ISFILTERED ( 'Table'[Column] ), IF ( SELECTEDVALUE ( Table[Column] ) IN { 6 }, "Y", BLANK () ) )
Notice: you can add more items to {} to append filter range, use comma as separator.
Measure 2 = IF ( ISFILTERED ( 'Table'[Column] ), IF ( SELECTEDVALUE ( Table[Column] ) IN { 6,7,8 }, "Y", BLANK () ) )
Regards,
Xiaoxin Sheng
HI @Anonymous,
You can try add a measure with if statement and isfiltered to check if fields has been filtered. Then drag above measure to visual level filter with 'is not blank' option.
Measure 2 = IF ( ISFILTERED('Table'[Person]), "Y", BLANK () )
Regards,
Xiaoxin Sheng
Hi @Anonymous,
Thanks for your reply.
But my requirement is when i select 6 in the filter at that time only the chart need to populate. When i select 5 or 7 or anything apart from 6 it shouldn't populate.
Regards
HI @Anonymous,
Maybe you can consider to add more conditions to that formula:
Measure 2 = IF ( ISFILTERED ( 'Table'[Column] ), IF ( SELECTEDVALUE ( Table[Column] ) IN { 6 }, "Y", BLANK () ) )
Notice: you can add more items to {} to append filter range, use comma as separator.
Measure 2 = IF ( ISFILTERED ( 'Table'[Column] ), IF ( SELECTEDVALUE ( Table[Column] ) IN { 6,7,8 }, "Y", BLANK () ) )
Regards,
Xiaoxin Sheng
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.