Fix: Combobox/Search is empty check not working - Power Platform Community

PHOTO EMBED

Mon Jul 18 2022 11:32:48 GMT+0000 (Coordinated Universal Time)

Saved by @gofunk1 #powerapps

If(
    (IsEmpty(ComboBox42.SelectedItems) || IsBlank(ComboBox42.Selected.Value)) && IsBlank(ComboBox42.SearchText),
    SubmitForm(EditForm1),
    Notify(
        "Please fill in the Combo Box!",
        Error
    )
)
content_copyCOPY

https://powerusers.microsoft.com/t5/Building-Power-Apps/Combobox-is-empty-check-not-working/m-p/1313708#M342900