How do i make an if with more then 1 variable. for example
if> { (variable1 + variable2 + variable3) >200 OR (variable1 + variable2 + variable3)<10 }
I'm trying to achieve something like this.
problem with if?
Moderators: Dorian (MJT support), JRL
Remove all the spaces, put percents around all your variable names and organize the statement with parentheses. Try something like this:
Let>variable1=1
Let>variable2=1
Let>variable3=1
if>{((%variable1%+%variable2%+%variable3%)>200)OR((%variable1%+%variable2%+%variable3%)accepted
Else
mdl>rejected
EndIf
Let>variable1=1
Let>variable2=1
Let>variable3=1
if>{((%variable1%+%variable2%+%variable3%)>200)OR((%variable1%+%variable2%+%variable3%)accepted
Else
mdl>rejected
EndIf
hmm
if>{((natb.delay1%+%natb.delay2%+%natb.delay3%)>200)OR((%natb.delay1%+%natb.delay2%+%natb.delay3%)<10)}
I wrote this and i get the following errors:
unknown identifier natb, parsing error and another parsing error.
I also know for a fact these variables do exist.. so i dont know the problem?
I wrote this and i get the following errors:
unknown identifier natb, parsing error and another parsing error.
I also know for a fact these variables do exist.. so i dont know the problem?