Show UX form for specific User Email and Admin Role

Hello , I’m trying to Show a UX Form for a specific user email and Amin role using

OR((USEREMAIL() = “Agents Ext[EMAIL]”), (USERROLE() = “Admin”))

Agent Ext is a table where includes a column EMAIL but nothing happen

0 7 265
7 REPLIES 7

Try this one.

OR(
	IN(
		USEREMAIL(),
		Agents Ext[EMAIL]
	),
	USERROLE() = “Admin”
)

No it doesn’t work as expected and it doesn’t hide nothing

Steve
Platinum 4
Platinum 4

Please explain in greater detail what you mean by this.

Where are you trying to use your expression?

I’m trying to use this with Show_IF on UX form

Try this one:

LOOKUP(USEREMAIL(), Agents Ext, Email, Userrole)=“Admin”

Not working too , I want to show UX form for Agents Ext table that includes EMAIL column with show_IF

Hello , @Solid_IDEA Thanks for the first reply It doesn’t work at first but i made some changes using OR and IN
OR( IN(USEREMAIL(),Agents Ext[EMAIL]) , IN(USEREMAIL(), Managers[EMAIL]))

Top Labels in this Space