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

Clicking on a value in table chart should show other values in another table chart except that value

I have a table chart in which values are listed below as:

CountrySales
US200
UK500
IND700

 

My requirement is that - If we clicked on US , UK and IND values should show in another table chart. If I clicked on UK, US and IND should show in another table chart. If I clicked on IND, US and UK values should show in another table chart.

Can someone please tell

1 ACCEPTED SOLUTION
V-lianl-msft
Community Support
Community Support

Hi @pinkukumar ,

 

First copy the table, then create a similar measure and put it into the visual level filter

Measure = IF(MAX('Table 2'[Country]) in VALUES('Table'[Country]),1,0)
Vlianlmsft_0-1640053555737.png

 


Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
V-lianl-msft
Community Support
Community Support

Hi @pinkukumar ,

 

First copy the table, then create a similar measure and put it into the visual level filter

Measure = IF(MAX('Table 2'[Country]) in VALUES('Table'[Country]),1,0)
Vlianlmsft_0-1640053555737.png

 


Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thankyou Liang for the solution😊

amitchandak
Super User
Super User

@pinkukumar , option1 -You can drill through or use tooltip report.

 

Option 2 - Create a color measure and create table and card visual , card visual should cover the second table. USe color measure to show and hide table

 

The background color of card measure using conditional formatting -> field value option

 

Use this measure =  if(isfiltered(Table[Country]), "#FFFFFF00", "#FFFFFF")

 

How to do conditional formatting by measure and apply it on pie?: https://youtu.be/RqBb5eBf_I4

 

 

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
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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