Skip to main content

Search

Multiple Selection - deselect radio buttons based on value of another field

Comments

2 comments

  • Christof

    Hi Adam Davies

     

    This is the Calculated expression you're looking for:

    if ([[Status]] == "None" || [[Status]] == "Opted-out") {     
         return null;
    } else{     
         return Ardevia.Expressions.Core.FieldValueProvider.GetFormFieldValue("RadioBoxes");
    }

     

    Works for single select (radio buttons) and multi select (checkboxes)

     

    Thanks to Markiyan Fostyak for helping find this solution 

    0
  • AdamD1

    Perfect. Thank you!

    0

Please sign in to leave a comment.