Hello Everyone,
I can't figure out how could I fetch a multi-person column on a SharePoint, to record if the current user of the app is in the list or not. I tried multiple methods, but no working solution. This was one of the first:
If(
!IsBlank(
LookUp(
'My_List',
CurrentUserEmail in Owners.Email
)
),
Set(UserPresence,true),
Set(UserPresence,false)
)
My_List is the SharePoint list and Owners is the multi-person column.
Also, there is the problem of the usual delegation warning. If that can be overcome that would be great, but at this point I would be happy if even the base functionality would work.
Thank you in advance if anyone has any recommendations!