Operations wont work as expected

Hi Guys,

Good Morning,
I cant figure out , why this operations wont work as expected.
<= or >
Kindly advice,

image

You need to use <= as it will match with the you x and y and will return true if the value is equal
< will only check if it is less then and not check if it is equal

In above case first number 400 is less than 602 , yet the result is false.

602 <= 400 Will always be false :wink:

ya got it as soon as i posted it . i had connected it wrong and expecting different result.

Thank you,