I would like do "hard-code" the colors if <= 10% then red, if >= 10% green and in between grey.
Our data is dynamically changing so can't adjust it once with start and end field.
3 réponses
@Sven Ertel
Hi, you can use:
IF [YoY]>0.1 THEN "Green"
ELSEIF [YoY]<-0.1 THEN "Red"
ELSE "Gray"
END
Then you can drag this field to color.
If this post resolves. would you be so kind to "Select as Best"?. This will help other users find the same answer/resolution and help community keep track of answered questions. Thank you.
Regards,
Diego