Hi Everyone,
Good day!
I just need some help on delegation error encountered. I have a sharepoint clearcollect from a list.
then I'm filtering it based on the collection id.
code below:
/*first collection */
ClearCollect(
colUserRequests,
Filter(
'SIMPL List',
'Created By'.Email = gvCurrentUserEmail
)
);
/* second collection with delegation */
ClearCollect(
colRequestContactApprovers,
Sort(
Filter(
'Contact Assigned Status',
Request.Id = colUserRequests[@ID]
)
)
);
The delegation was in Request.Id = coluserRequests[@ID].
Thanks in advance for your help guys!