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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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())

Share with Power BI Enthusiasts: 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())

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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