Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
NKotak_Leecare
Helper III
Helper III

Display in matrix based on selection from a filter

Hi all,

 

I have created three measures following this: Show or Hide a Power BI Visual Based on Selection - Excelerator BI for displaying a message when nothing is selected from the filter and the visual remains empty. However, the filter that I have has values that are there in the visual as well. For example, the name by which I am filtering the visual is also present in the matrix visual itself. So, when I am adding the Hide Visual measure to the visual, it is ignoring it and displays all the name values even when nothing is selected from the filter. 

 

Measure 1: 

Check Filter = ISFILTERED(person[FullName]) -- Returns TRUE when any selection is made
 
Measure 2:
Hide Resident Visual BR =
IF(
    [Check Filter],
    1,
    0
)
 
Measure 3:
Message =
IF (
    [Check Filter],
    -- Check Filtered returns true or false based on selection in slicer
    "",
    --Give me nothing when Check Filtered returns True
    "You must first select a Resident from Resident Filter to see the results."
)
 
The filter and visual snapshots:
 
NKotak_Leecare_0-1681352446386.png
 

Do we have any solution for that?

 

Thank you!

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@NKotak_Leecare , Try to change measure like

Check Filter = calculate(ISFILTERED(person[FullName]), allselected())

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@NKotak_Leecare , Try to change measure like

Check Filter = calculate(ISFILTERED(person[FullName]), allselected())

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.