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

Refresh values based on visiual selection

Dear all,

I would appreciate your help / insight on the below

I have one table conains two targets as below 

example:

column1 target1 column2 target2

X              90%         Y       100%
A              99%         B        95%
I have two matrix visiual 

Matrix1: contains data of column1 & target1

Matrix 2: contains data of column2 & target2

so if I click or filter matrix1 visiual, value X

I need that matrix2 set the target as of X (90%) for rows / values of Y and B

instead of Y = 100% should be 90%
instead of B = 95% should be 90%

 

thanks in advance for any insight  

1 ACCEPTED SOLUTION

i understand that you also want , you want also the same effect on visual 1 if you filter from visual2  . 

if that so, you can create a measure : 

Target 1 - measure = 

switch( 

true(),

isfiltered(column2) ,  max ( target2) ,

max ( target1)

)

 

 

 

View solution in original post

4 REPLIES 4
Daniel29195
Super User
Super User

you can try creating this measure : 

Target 2 - measure = 

switch( 

true(),

isfiltered(column1) ,  max ( target1) ,

max ( target2)

)

 

let me know if it works for you , 

 

Thank you so much it works perfectly 

so when I click first visual I get in the second one what was the selected tarrget,

what if I want to add other is filtered in same measure

so when I click second visual I get the selected target in visual 1

i understand that you also want , you want also the same effect on visual 1 if you filter from visual2  . 

if that so, you can create a measure : 

Target 1 - measure = 

switch( 

true(),

isfiltered(column2) ,  max ( target2) ,

max ( target1)

)

 

 

 

Thanks a lot

can I use same measure to define both filters ? 

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