ShowIf - Group of people

Using SHOWIF, how would I only show a view to certain selected people. Meaning:

I have a view called “Commision Earned”. I know I can ShowIf USEREMAIL()=“JohnDoe@someemail.com” and the view will be only visible to him.

But, If I want to add another person what do I use? Would it be:
USEREMAIL()=“JohnDoe@someemail.com”,“JackSpratt@anotheremailprovider.com”

Or what solution would I use? I don’t want to use domain as there are too many people in the domain.

OR(USEREMAIL()=“JohnDoe@someemail.com”,USEREMAIL()=“JackSpratt@anotheremailprovider.com”)

1 Like

Fantastic… Thanks Dave