Hi All,
I have 2 sharepoint lists masterlist and employeelist. Request ID exists in both tables where Request ID is a foreign key in employee list.
I have a search box which searches across the masterlist and display the result in Gallery. I have a revoke button in gallery, which should update the status of all employees to Revoked in childlist for that particular requestID
I tried to update the Status field to Revoked in EmployeeList, however couldn't because Gallery is populated with masterlist. Any idea how to proceed ?
Patch(EmployeeList, ThisItem.RequestID=MasterList.RequestID,{Status:Revoke}); // doesn't work
