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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
EugeneK1
Regular Visitor

Link dynamic result in Table A to obtain a result from Table B

Hi, hoping to get some help on this.

I have a ‘Variance’ measure in ‘Table A’ and would like to know the corresponding performance results from ‘Table B’ in a Card Visual.

Any suggestions to create the link ?

 

 

Example 1; Location Spring Valley’s variance is 13.85%, hence “Above Target”

Example 1Example 1

Example 2; County Houston’s variance is 9.45%, hence “On Target’

Example 2Example 2

Example 3; County Houston’s variance for month of Mar is -14.16%, hence “Below Target’

Example 3Example 3

In ‘Table A’ there are;

6 Columns; State, County, Location, Year, Month, Target, Actual

1 Measure:  Variance = ( Sum('Table A'[Actual]) - SUM('Table A'[Target]) ) / SUM('Table A'[Target])

Table ATable A

In ‘Table B’ there are;

4 Columns; Performance, Variance, Min.Variance, Max.Variance

Table BTable B

1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
Community Support

@EugeneK1 ,

 

You may create a new measure like below and drag that measure to another vard visual:

Target =
SWITCH (
    TRUE (),
    [variance] > 0.0945, "Above Target",
    [variance] = 0.0945, "On Target",
    [variance] < 0.0945, "Below Target"
)

Community Support Team _ Jimmy Tao

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

1 REPLY 1
v-yuta-msft
Community Support
Community Support

@EugeneK1 ,

 

You may create a new measure like below and drag that measure to another vard visual:

Target =
SWITCH (
    TRUE (),
    [variance] > 0.0945, "Above Target",
    [variance] = 0.0945, "On Target",
    [variance] < 0.0945, "Below Target"
)

Community Support Team _ Jimmy Tao

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

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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
Top Kudoed Authors