Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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.