In others words if the value of a numeric field is between 94 and 109 then I want to do something. Can someone tell me how to do this? Please.
In others words if the value of a numeric field is between 94 and 109 then I want to do something. Can someone tell me how to do this? Please.
var myVal = NumericField1.rawValue;
if (myVal >= 94 && myVal <= 109)
{
Do something.
}
I didn't think I was going to find it that quick.
StevenD