Hi All!
I've got a form that I created based on a sharepoint list. I created a gallery with checkboxes (instead of a multi-selection combobox) inside that datacard.
I have a status combobox in the same form that I want to change the values based on the selection in that gallery--but ONLY if a specific checkbox in that gallery is selected. If the checkbox is not selected, leave the combobox alone.
For the Default of the combobox I put in
If(gallery1.Selected = "CheckboxName","Pending", Blank())
This is obviously not working, but I don't know what else to put in the "else" part of the If statement. I could use some tips on the best way to do this.