Jan 20 2023 05:31 AM
Hi All,
I've created a custom form to enter and edit data in a SharePoint Online List.
Creating a new item works perfectly, but if I try to edit an existing item, I get the above error when I try to save, and all my changes are lost.
I cannot see any "read only" fields (e.g. ID, Modified by, etc.) in the form in PowerApps.
The "App Checker" in PowerApps does not detect any problems.
Can anyone point me in the right direction? Even if it's just to some log files which might tell me which field/column is causing the problem?
Any suggestions appreciated.
Greg.
Feb 04 2023 07:08 AM
I managed to solve it myself.
I added the following code to the "on Error" field on the App (Select App from the Tree view on the left, then On Error from the properties on the right.)
Notify(
Concat(Errors(ClientList), Column&": "&Message),
NotificationType.Error
)
It then told me what the offending column was next time the error occurred.
Hope this helps someone else in the future.
Feb 25 2023 01:45 PM
Sep 08 2023 11:43 AM
Sep 18 2023 06:07 PM
thanks so much! This works perfectly for me to identify the problematic columns! You are a LEGEND~~