Hi all,
I have a radio button with an OnSelect validation, which does not work.
If I choose for both "Not applicable " it is supposed to end in "Not defined" but it ends in "Low Risk".
If(
'Radio1.1_1'.Selected.Value = "No" Or 'Radio1.1_1'.Selected.Value = "Not applicable" Or IsBlank('Radio1.1_1'.Selected.Value) And 'Radio1.2_1'.Selected.Value = "Yes" Or 'Radio1.2_1'.Selected.Value = "No",
Set(
varResult,
"Low Risk"
),
Set(
varResult,
"Not defined"
)
);