I have an app made in teams where users are going to edit existing data as well as adding new data to forms. I based it off the generic autogenerated form you get from Integrate > Powerapps > create an app. This was done from sharepoint list as tab in teams.
The issue I am having is that other users than me (the designer) get errors when trying to save changes to the form entries. The initial error was "..specified column is read-only and can't be modified" but after I added
Notify(
Concat(Errors(Posegjennomgang), Column&": "&Message),
NotificationType.Error
)
to the apps OnError, all I got returned was An error has occured.
I tried looking into a rabbit hole of "modified by" columns error, but can't seem to find a way of turning the use of them off.
Is there something basic I am missing or does this smell like a bug?