Hello Members,
I would be really grateful if you can help me to resolve this issue. Also, its an urgent requirement.
I have a SharePoint list called Wcb claims list all that contains various columns like Employee Name (Person), DOB (Date), Department (Text), Supervisor Name (Person), etc.
I have customized this list form by using Power Apps SharePoint integration form and the form looks like below:
Here, whenever an employee will choose their name or any specific employee name, all the details (Employee Email, Phone number, Company, Supervisor name, etc.) will auto-populate (from Office365) over the form.
However the form details is submitting in the SharePoint list and everything is working fine. But when I want to edit a specific item from the list, some of the details (Employee Email [Company], Phone Number, Province, Supervisor name, DOB) not showing in the form as like below image:
I have used this formula in all the fields (Text input's Default property) in the form including Department & JobTitle field:
Employee Email: Default =
If(DataCardValue2.Selected.DisplayName = User().FullName, Office365Users.UserProfile(User().Email).Mail, LookUp(DataCardValue2.SelectedItems,1=1).Mail)
Employee Phone Number: Default =
If(DataCardValue2.Selected.DisplayName = User().FullName, Office365Users.UserProfile(User().Email).mobilePhone, LookUp(DataCardValue2.SelectedItems,1=1).mobilePhone)
Where,
DataCardValue2 = Employee Name Datacard [Combobox]
I also researched on this issue, and few of them are telling to clear the browser cache and cookies. I tried that one too but nothing working for me. Can anyone suggest me anything or any alternative solution please? It's really urgent and I ll really grateful if it resolved.
Thanks in Advance!