Hello All
I created a "Point of Contact List" in SharePoint, then I created the Gallery in PowerApps, In the same page there is a label that has a lblresult however the result message is not in the SharePoint.
Also I created in SharePoint a List name "Back to Work Eligibility" it has Title, Check-In Date, Next Check in Date, Employee and Result
In the Confirm Button
I wrote
Patch(
'Back to Work Eligibility',
Defaults('Back to Work Eligibility'),
{
Title: "Status from " & User().FullName & " on " & Now(),
'Check-In Date': Now(),
'Result': {Value: lblResult},
'Next Check-In Date': DateAdd(
Now(),
Value(varCheckInDays),
Days
),
Employee: {
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims: "i:0#.f|membership|" & Lower(Office365Users.MyProfile().Mail),
Department: Office365Users.MyProfile().Department,
DisplayName: Office365Users.MyProfile().Mail,
Email: Office365Users.MyProfile().Mail,
JobTitle: Office365Users.MyProfile().JobTitle,
Picture: ""
}
}
);
the 'Result': {Value: lblResult}, Giving me error. Also all the data are logged in into the "Back to Work Eligibility' in SharePoint but not the lblResult. Also I want to add the Point of contact that the employee is assigned to or click on his/her name.
Is this possible?
Can I create for every "Point of Contact" a dashboard the employee Result that clicked his/her name?
Hopefully I explained right. Thanks in Advance, much appreciated.