
Hi,
Does anyone know of a method to clear a combo box when a toggle button is toggled without resetting the combo box to its default?
I would like DataCardValue.DefaultSelectedItems = Parent.Default unless the toggle button is toggled.
You should be able to do that with an if statement:
If(toggle.Value=true, Parent.Default, Combobox.Selected.Value)