Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
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'.
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
Solved! Go to Solution.
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.
Measure_Email = IF ( ISFILTERED ( Connections[Connected to] ), IF ( HASONEVALUE ( Contacts[Email] ), VALUES ( Contacts[Email] ) ) )
Regards
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.
Measure_Email = IF ( ISFILTERED ( Connections[Connected to] ), IF ( HASONEVALUE ( Contacts[Email] ), VALUES ( Contacts[Email] ) ) )
Regards
That worked perfectly, thank you!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
79 | |
73 | |
57 | |
36 | |
31 |
User | Count |
---|---|
90 | |
60 | |
60 | |
49 | |
45 |