Color no Stock = SWITCH(
TRUE()
,[Bestand] < 0 && [Bestand] > -[ZUS], "#f44242"
,[Bestand] < -[ZUS], "#8800ff"
)
Hi,
i want to use the switch function, to display the numbers in the matrix in a certain font color.
- If number < 0 -> number should be red.
- Else If number < - ZUS (in this example 1500) -> number should be purple.
Unfortanely everything below 0 is purple

