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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
RanHo
Helper IV
Helper IV

DIFFERENCE OF 2 COLUMNS IN TABLE

Good Day guys ,  I want to show the difference of 2 columns in a table and also want to show if its reach the target by goals (green if its greater than the Target otherwise red)

 

TEAMTEAM LEADERTARGET GOALSACTUAL GOALSDIFFERENCE
ALEADER A12085 
BLEADER B10090 
CLEADER C8070 
DLEADER D7588 

sample

RanHo_1-1631071400170.png

 

 

Thanks in Advance!

1 ACCEPTED SOLUTION

Hi @RanHo ,

 

Please create the relationship between ACTUAL table and TARGET table:

 

vkkfmsft_0-1631495454412.png

 

Then create the following measures:

 

DIFFERENCE = SUM(TARGET[TARGET GOALS]) - SUM(ACTUAL[ACTUAL GOALS])
Color = IF( [DIFFERENCE] > 0, "red", "green" )

vkkfmsft_1-1631495627826.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.

Best Regards,
Winniz

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
amitchandak
Super User
Super User

@RanHo , You can create two meausres

 

Target= sum(Table[TARGET GOALS])
Actual= sum(Table[ACTUAL])

 

Create a color measure and use that in conditional formatting using field value option

 

color = If([Target] >[Actual], "Red", "Green")

 

 

@amitchandak  Sir, first I want to show the DIFFERENCE column coz I dont have the column or measure for DIFFERENCE, and also the TARGET column and ACTUAL column was from different table is it possible?

 

 

Thanks!

Hi @RanHo ,

 

Please create the relationship between ACTUAL table and TARGET table:

 

vkkfmsft_0-1631495454412.png

 

Then create the following measures:

 

DIFFERENCE = SUM(TARGET[TARGET GOALS]) - SUM(ACTUAL[ACTUAL GOALS])
Color = IF( [DIFFERENCE] > 0, "red", "green" )

vkkfmsft_1-1631495627826.png

 

If the problem is still not resolved, please provide detailed error information or the expected result you expect. Let me know immediately, looking forward to your reply.

Best Regards,
Winniz

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

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.