Can’t figure out how to tell better logics to check if a number is between two specified limits
Anyone?
Can’t figure out how to tell better logics to check if a number is between two specified limits
Anyone?
Try {{1 < Energie < 10}}
or {{Energie > 1 and Energie < 10}}
tried all combinations, with dash, without a dash. not working
This works for me:
Note that I didn’t add {{
and }}
; that’s not Better Logic syntax but “regular” Logic. I also had to add parentheses around each subexpression to get it working.
Works, thnx. Learning every day…