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
Anonymous
Not applicable

Conditional Formatting - font color based on relative value in same table

Hi all - wondering if anyone knows how to conditionally format a column (font color) based on it's value relative to another column? Example - below, if the Actuals column is greater than the AOP column, I'd like the font color of the Actuals column to be red. If the Actuals column is less than the AOP column, I'd like it to be green.

 

ketchup_0-1607362425971.png

 

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@Anonymous 

 

Create a measure like:

 

Flag =
IF(
[Inv Bal Actual] > [Inv Bal AOP] , "RED", "GREEN"
)
 
Select the Actuals, Conditional Formatting and choose Field Value
 

________________________

If my answer was helpful, please click Accept it as the solution to help other members find it useful

Click on the Thumbs-Up icon if you like this reply 🙂


Website YouTube  LinkedIn
Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

3 REPLIES 3
Fowmy
Super User
Super User

@Anonymous 


You do not need to use CALCULATE as you are not modifying any initial filter context.

Inv Bal Actual = SUM(Amsterdam[Inventory Balance - Actuals])

 

________________________

If my answer was helpful, please click Accept it as the solution to help other members find it useful

Click on the Thumbs-Up icon if you like this reply 🙂


Website YouTube  LinkedIn

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Fowmy
Super User
Super User

@Anonymous 

 

Create a measure like:

 

Flag =
IF(
[Inv Bal Actual] > [Inv Bal AOP] , "RED", "GREEN"
)
 
Select the Actuals, Conditional Formatting and choose Field Value
 

________________________

If my answer was helpful, please click Accept it as the solution to help other members find it useful

Click on the Thumbs-Up icon if you like this reply 🙂


Website YouTube  LinkedIn
Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Anonymous
Not applicable

Thank you, @Fowmy! After creating [Inv Bal Actual] and [Inv Bal AOP] as measures themselves, this worked perfectly.

 

Follow up question - is there a better way to create these measures than inputting the following formula

Inv Bal Actual = CALCULATE(SUM(Amsterdam[Inventory Balance - Actuals])) ? Perhaps there is some way to transform the data before this or another way to avoid having to create lots of measures (just to be used in the Flag measure, for example).

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.

Top Solution Authors