Hi all
I have one niggling issue with a form I've made with PowerApps.
With regards to a "Person or Group" field in SharePoint, which is a "Combo Box" in PowerApps, I added a function under the DefaultSelectedItems property so that it auto populates with the logged in user's information like so...
Office365Users.UserProfile(User().Email)
This works great, when I click the NEW button to "fill out the form", I can see this field is being auto populated with the logged in user. However, when the form is submitted, this entry just isn't filled in on the resulting form. What is very strange, is that this field is mandatory, so if it's empty, the form submission should fail, but it doesn't!
I do set a variable on app launch, it is...
Set(varUserEmail, User().Email)
I have tried to amend the code in the DefaultSelectedItems to Office365Users.UserProfile(varUserEmail) hoping this will fix it but it doesn't.
Thanks for reading, any help greatly appreciated.
Regards
Steven