madjazz
2019-10-16 01:19:52
Can I use logicals? For example, if pp>10 and pp < 20 then do x?
madjazz
2019-10-16 01:19:52
Can I use logicals? For example, if pp>10 and pp < 20 then do x?
Steve-Bome Forum Moderator
2019-10-16 01:37:27
You can do logical but not complex expressions for your example you would need
if pp<=10 then skip next rule
if pp<20 the goto “myroutine”
// do other stuff here if rules do not match
goto “done”
label “myroutine”
// do stuff here
label “done”