Hello,
I have a sharepoint list with a yes/no field called "SpBooleanField", i'm trying to check the user exists as an employee on the list and that the field SpBooleanField is set to true (Yes in sharepoint). I cannot understand why the below is not working, any help would be really appreciated.
Set(
varIsRequired,
!IsBlank(
LookUp(
myList,
And(employee.Email = LoginUser.Email && SpBooleanField=true )
)
)
);