Hello,
I have an Edit Form in my app that ties back to a SharePoint List. Two of the fields in my List are Supervisor Name and Employee Name. In my app I have the Items property set to filter the list down to only show the relevant information to the present user, rather than sorting through 500 names. This works in Power Apps, however, it doesn't write back to the SharePoint List correctly.
My formula for the Items property of Supervisor Name in my Edit Form is:
Office365Users.UserProfile(MyProfile.Id)
My formula for the Items property of Employee Name in my Edit Form is:
Office365Users.DirectReports(MyProfile.Id)
I do want to note that I have a variable named MyProfile that is set to the current user when they open the app, so that is what I am referencing to make my app dynamic. Also, my Edit form's DefaultMode is set to FormMode.New, so that is not an issue. I have tested this and other fields from my form write back to my SP List, but the names never transfer over.
Thank you in advance!