I have a checkbox that when clicked opens a popup. The issue is I need it to look at the current user signed in and compare that user to the Safety Group to ensure that only those people who are listed have the ability to check the box.
I have it working for just the Scribe to be able to check that box but I also need the ChairPerson to be able to check it as well.
I do not know how to modify the code below to be an OR so either one can check the box
UpdateContext(
{
lclPopUp: If(
Or(DataCardValue45_2.Selected.DisplayName = CurrentUser.FullName,Or(DataCardValue56_2.Selected.DisplayName = CurrentUser.FullName,LookUp(SafetyMeetingGroups_1,Lower(Scribe.Email)=Lower(CurrentUser.Email)).ID>0)),
"Trainer"
)
}
);