Avatar

Level 7

on the "exit" event for your numeric field:

if (this.rawValue > 150) {

     rblSet1.presence = "visible";

     rblSet2.presence = "hidden";

}

else {

     rblSet1.presence = "hidden";

     rblSet2.presence = "visible";

}

Now, I don't know what "set of choices" you're using. In my example, I went with a radio button list. The code in the if/else clauses sets the entire list to visible or hidden so that it doesn't interfere with the layout when your user changes the number.