On my Submit button, I have this code:
If(
IsBlank(txtValue.Text) || IsEmpty(drpValue.Selected.Value),
Notify("Please fill out all fields marked with asterisk (*)", NotificationType.Error), Patch ({update_here});
Where can I put my navigate(successscreen)? I tried adding it after patch but it submits even with errors with the Notify message.