Hi, I’m trying to do something like this:
switch X
case (x < 0) do…
case (x in range 0…5) do…
case (x > 5) do…
default do…
endswitch
Regardless what I’ve tried, it seems always to hit the default case, as none of the prior experimental cases test true. I guess I could bodge together a bunch of IF’s however I switch where-ever I can as it’s much cleaner. Can anyone shed light on if what I’m trying to do is possible at all and if so what am I doing wrong?
Thanks
/Max