Hello dears,
I'm working on acanvas app and at a certain point I need to determine if 3 value has the same sign (positive or negative) or not.
I'm using 3 text boxes for the numbers and a label to get the result.
I used the below formula in the label Text property but it's not working, any ideas?
If(And(Value(txt1.Text) > 0, Value(txt2.Text) > 0,Value(txt3.Text) > 0),"Same sign",
If(And(Value(txt1.Text) < 0, Value(txt2.Text) < 0,Value(txt3.Text) < 0),"same sign","Not same"),"not same")
Thanks in advance.