I have a group of six radio buttons of which I need one to automatically fill in based upon a value in a numeric field.
For example if numericfield8 = or is greater than 110 then we'll need a radio button from the group of six to be selected automatically so that the person filling out the form doesn't need to.
Help!!!
var myVal = NumericField1.rawValue;
if(myVal >= 110)
{
RadioButtonList.rawValue = "6";
}
else
{
RadioButtonList.rawValue = "0";
}
StevenD
StevenD