Hi @R3dKap,
Could you please share a bit more about the validation rule and the validation message within your SP list?
I have made a test and the issue is confirmed on my side. The error message (first error) shows up as below:
There was a problem saving your changes. The data source may be invalid.
I also added a Button control within the app, and set the OnSelect property to following formula:
Validate('20180802_case8',"EmployeeName",DataCardValue2.Text)
When entering less than 4 characters in the field and then clicking this Button, no error message shows up.
Currently, I afraid that the validation rule of SP list could not be supported within PowerApps. As an alternative solution, you could take a try to achieve your validation needs within your app.
I have made a test on my side, please take a try with the following workaround:
Set the OnSave property of the SharePointIntegration control to following formula:
If(
Len(DataCardValue2.Text)<4,
Notify("There must be at least 4 characters at EmployeeName field!",NotificationType.Error),
SubmitForm(SharePointForm1)
)
On your side, type the following formula:
If(
Len(DataCardValue20.Text)<4,
Notify("There must be at least 4 characters at scECTRAdrCP field!",NotificationType.Error),
SubmitForm(SharePointForm1)
)
The GIF image as below:
Best regards,
Kris