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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Dynamically show data in table when another visualisation is selected

I have a pie chart showing total income based on three different platforms. 

You can then break the platform down to database, so underneath the pie I have a table showing database and total income.

 

So when you select one platform from the pie, the table below will show all the relevant databases for that platform. 

 

When you haven't selected a platform, the table below shows all databases. 

 

I want the table to be blank until someone selects a platform. 

 

Is this possible at all? I have a feeling no, but thought I would ask. 

1 ACCEPTED SOLUTION
AnthonyTilley
Solution Sage
Solution Sage

you can use the hasonefilter function and then rplace with blank if not true 

 

in the code below replace sum('Table'[amt]) with the measure you are showing in your table 

measure = if(HASONEFILTER('Table'[platform]),sum('Table'[amt]),BLANK())

 

Untitled.png





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
AnthonyTilley
Solution Sage
Solution Sage

you can use the hasonefilter function and then rplace with blank if not true 

 

in the code below replace sum('Table'[amt]) with the measure you are showing in your table 

measure = if(HASONEFILTER('Table'[platform]),sum('Table'[amt]),BLANK())

 

Untitled.png





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Anonymous
Not applicable

Hurrah, this works @AnthonyTilley thanks so much! Sorry for the delay have been off work for a week but this is super 🙂

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors