Why does "In Range" Return "False", even though the value entered into it is in the range?

Не выдаёт True

In range is checking if -25 is greater than -20 and less than -30. which it isn’t, hence false.

-20 is greater than -30, the Min and Max values should be flipped.
Set Min = -30, Max = -20

1 Like

Oh, yes, I forgot that there is a minus, thank you