Hello,
So I have two text boxes with each having a number in them. I would like which ever one is less to show in the 3rd text field.
For an example text1 shows 100 and text2 shows 200. So after I press my button text3 will show as 100.
I would think the code looks like this (see below), but not exactly sure, any help will be greatly appreciated!
if ($w("#text1").text > "#text2")
$w("#text3").text = (text2).to.fixed(2).toString();
if ($w("#text2").text > "#text1")
$w("#text3").text = (text1).to.fixed(2).toString();
Thank you in advance!