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
jwbtkd3
Frequent Visitor

Visuals Blank until Related Slicer Value chosen

Hello,

 

I have two tables that are related to each other. The first is a 'Contacts' table containing [Full Name], [Employer], [Job Title], [Email]. The second table, 'Connections', contains [Connected to], [Email From], [Role To]. 'Connections', is related to the 'Contacts' in a many (Connections) to one (Contacts) bi-directional relationship by [Email From]/[Email].

 

I am looking to have my dashboard items blank until a Slicer for [Connected to] value is chosen. The dashboard visuals are all information from the 'Contacts' table, with nothing from 'Connected to'. Example.jpg

 Ideally, the table on the right will be blank until a value from the drop-down slicer is chosen.

 

On a different dashboard item, I used a solution I found here, creating a measure using IF and ISFILTERED/HASONEFILTER and applying that as a visual level filter. However, for that item, all the information is contained on the one table. I have a feeling RELATEDTABLE and CALCULATE needs to be used for my problem, but cannot figure it out. Can someone point me in the right direction?

Thank you 

1 ACCEPTED SOLUTION
v-ljerr-msft
Microsoft Employee
Microsoft Employee

Hi @jwbtkd3,

 

According to your description, you should be able to use the formula below to create the measure and applying that as a visual level filter to get your expected result.Smiley Happy

Measure_Email =
IF (
    ISFILTERED ( Connections[Connected to] ),
    IF ( HASONEVALUE ( Contacts[Email] ), VALUES ( Contacts[Email] ) )
)

 

Regards

View solution in original post

2 REPLIES 2
v-ljerr-msft
Microsoft Employee
Microsoft Employee

Hi @jwbtkd3,

 

According to your description, you should be able to use the formula below to create the measure and applying that as a visual level filter to get your expected result.Smiley Happy

Measure_Email =
IF (
    ISFILTERED ( Connections[Connected to] ),
    IF ( HASONEVALUE ( Contacts[Email] ), VALUES ( Contacts[Email] ) )
)

 

Regards

That worked perfectly, thank you!

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.