The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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?
Solved! Go to Solution.
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())
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())
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
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
110 | |
82 | |
63 | |
53 | |
51 |
User | Count |
---|---|
127 | |
118 | |
81 | |
65 | |
64 |