As the title implies, my customized Sharepoint form is using multiple dropdowns for data entry. I'm trying to validate the form to ensure that at least one of these dropdowns is not empty. This formula works for ONE dropdown:
If(IsBlank(Dropdown1.Selected.Value), Notify("You must fill out of one the dropdowns", NotificationType.Error,3000), SubmitForm(SharePointForm1))
However, if I modify it to this:
If(IsBlank(Dropdown1.Selected.Value) Or IsBlank(Dropdown2.Selected.Value), Notify("You must fill out of one the dropdowns", NotificationType.Error,3000), SubmitForm(SharePointForm1))
it's wanting to have both dropdowns (Dropdown1 and Dropdown2) to have value before it submits.
Any ideas?