Hi, I build a form where user check in office presence details on daily basis (only one submission is allowed per day). once they submit the form, it should reset the screen and disable the button and if some tries to submit again it should notify the user that form has been submitted for today.
The issue i'm facing is, once after i submit form when i'm trying to resubmit im not getting the notification. (i've also added notify to a specific field instead on a button with same logic but its not working)
The below is onselect property of a button
Set(issubmitted ,
IsBlank(LookUp(
Survey,
Title=User().Email &&
Date=Today()
)));
If(issubmitted,SubmitForm(Form2_1),Notify("You've already submitted the form",NotificationType.Error));