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

Question regarding conditional formatting?

 

Hi

I manage to use conditional formatting one of my matrix table. I use a rule that really simple

If 1column value  (variance) is higher than 0.1 and lower 99999  show its red.

 

I would like to modify for the following

If the column value (variance) is higher than 0.1 and lower 99999  show its red BUT if the variance = the actuals (other column) it should be blank.

 

Any ide how can I manage this? Where should I look at it?

 

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

Hi @Anonymous ,

 

We can set conditional formatting based on a measure like this.

 

Measure = var va = MAX('Table'[variance])
var ac = MAX('Table'[actuals])
return
IF(va >=0.1 && va<=99999 && va <>ac,"#FF0027",BLANK())

Capture.PNG

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

2 REPLIES 2
v-frfei-msft
Community Support
Community Support

Hi @Anonymous ,

 

We can set conditional formatting based on a measure like this.

 

Measure = var va = MAX('Table'[variance])
var ac = MAX('Table'[actuals])
return
IF(va >=0.1 && va<=99999 && va <>ac,"#FF0027",BLANK())

Capture.PNG

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.
RobbeVL
Impactful Individual
Impactful Individual

Hi there,


If you cannot set your rules applying to your needs, you can always use a calculated measure to do so.
I cannot explain it better than on this page :

https://docs.microsoft.com/en-us/power-bi/desktop-conditional-table-formatting 

Have a look at the SWITCH Method.

 

Robbe

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.