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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
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.