Hamburger menu item not showing

BobG
New Member

I have a hamburger menu view that show in the emulator for designated user determined by a LookUp but does not show up when I am using the email for the creator. What am I missing here?

0 5 420
  • UX
5 REPLIES 5

Steve
Platinum 4
Platinum 4

Please post a screenshot of the complete Show if expression for the view.

BobG
New Member

OR(
Lookup(useremail(), “Employees”, “Email”, “Position”)= “Manager”,
Lookup(useremail(), “Employees”, “Email”, “Position”)= “Supervisor”,
useremail() = ??
)

I’ve tried various “Useremail() = _________” with no success.

I believe the app emulator (assuming that’s where this is a problem) doesn’t fully implement the settable user email address throughout the app. I encourage you to engage support@appsheet.com with this.

@BobG
Give a try putting the below expression. It works for me.

OR(
IN(USEREMAIL(),SELECT(Employees[Email], OR([Position] = “Manager”,[Position] = “Supervisor”))),
USEREMAIL() = “abc@abc.com”).

BobG
New Member

Thansk Sai. It works for me too. I’ve been talking to support about this because the creator email shouldn’t have to be called out, I wouldn’t think.

Top Labels in this Space