i have SharePoint backend form uploaded all employee IDs in it and added formula to add the ID of employee who opened the form this is working fine
but i found that when the employee opened the form in View or edit the ID not displayed it became empty so is there any recommendation to solve this issue
want to display the ID of the user who created the item
tried the below but ThisItem.'Created By'.Email gives me error
Set(
varEmployeeID,
Coalesce(
LookUp(
'Database',
Emails = ThisItem.'Created By'.Email,
'Employee IDs'
),
"ID not found"
)
);
the below formula working with once the form is opened.
Set(
varEmployeeID,
Coalesce(
LookUp(
'Database',
Emails = Office365Users.MyProfile().Mail,
'Employee IDs'
),
"ID not found"
)
);