
I have entered a data validation formula in a Sharepoint list column that is connected to a Power App.
I have also created a popup when I receive the error.
The issue is that I want to not display the system generated message and only display my popup.
My Patch has:
If(
IsEmpty(
Errors(
Then the Patch formula.
Ends with
)
),
Notify("Update Successful",NotificationType.Success; 1);Set(SuccessNotify,true),
Set(ErrorVisible, true), Set(ErrorNotify, true)
)
My Sharepoint list validation formula is: =Status=ISERROR(#NULL!)
As I write this I realize I should look into data validation within the app so I'll look into that now. But the question remains...