Hello! I have a multi-select combo box and want to clear all other values if "None of the above" is selected. I have come close with:
ComboBox.OnChange
If("None of the above" in ComboBox.Selected.Value, UpdateContext({varNoneAbove:true}); UpdateContext({varNoneAbove:false}))
Can I update the values in a multi select combo box within the .OnChange of that same multi select combo box?
Any ideas? Thanks in advance!