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 have a simple measure test1 - test2.
What I want is my card to return the value in a colour based on the output.
If < 0 the hex #ed6955 else hex #87b826
Any idea how to incorporate this please?
Solved! Go to Solution.
I'd create a measure for the conditional formatting
CardColor =
IF (
[test1] - [test2] < 0,
"#ed6955",
"#87b826"
)