The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi!
I'm trying to set up a conditional formating on a set of measures ([PreviousRevenues], [RevenuesVsPrevious] and more) represented on independent cards based on the same measure [RevenuesVsPrevious]. The conditional formatting is in all cases the exact same:
But instead it only works in the [RevenuesVsPrevious] measure. Does anyone know whats going on and how to fx it?
Thanks!
Solved! Go to Solution.
Hi @Anonymous ,
You could create a measure to set colors. For example:
color = IF ( [Measure] > 5, "green", IF ( [Measure] < 3, "red", "yellow" ) )
Then set in the conditional formatting.
Then you could apply it to each field.
Hi @Anonymous ,
You could create a measure to set colors. For example:
color = IF ( [Measure] > 5, "green", IF ( [Measure] < 3, "red", "yellow" ) )
Then set in the conditional formatting.
Then you could apply it to each field.