When building my power apps, I noticed that it didn't matter if I filled the "required" fields or not. Power Apps always navigated me to the "End Screen". The form itself was not submitted.
My question now is, how do I build a formula so that Power Apps only navigates the user to the "end screen" when the "required" fields are filled and not left empty?
I don't need anything complex, just something to show the User that he missed required fields and is able to fill them.
Current Formula:
SubmitForm(['EditForm NSI']);;
Navigate('End Screen');;
Fade
I also tried to use this formula:
If(
EditForm NSI.Valid &&
DataCardValue12_2.Text <> "" &&
DataCardValue18_2.Text <> "" &&
DataCardValue20_2.Text <> "" ,
SubmitForm('EditForm NSI');
NewForm('EditForm NSI');
Navigate('EditForm NSI'),
Notify("Please enter the Required fields",NotificationType.Error);
Navigate('End Screen')
)
But it didn't work.