Skip to main content

I need to build a conditional like the following:


if {variable ABC} > 0 and < 5
set {variable X} false
set {variable Y} false
set {variable Z} true
else

{variable ABC} is a number variable


When I try to setup this conditional it won’t allow me to use those options.


Thanks,

Leandro

if (ABC > 0 and ABC < 5) {
Set…
}

Reply