I have (30) Radio Button controls with the same quantity of related text labels in a form. If a user inadvertently selects a radio button (but does not have text in the related field), I was trying to reset the radio buttons with form submittal. Following is a test I was trying on a single radio button.
If(
IsBlank(
DataCardValue11.Text,
Reset(Radio1_3),)
);
SubmitForm(frmSODataEntry)
)
A couple of questions...
1. Initially I have not been able to get the format correct. If text field is empty, reset radio button else do nothing. I continue to receive an "Invalid Number of Arguments". Is that related to my "do nothing"?
2. Is this the efficient way to accomplish or should I use different logic?