I have 2 dashboard, one for employees and another for managers. I am having trouble with the formula for the starting view.
Dashboard for managers is named Dashboard
Dashboard for employees is named Dashboard employee
I have a user table name “Users” that has username(useremail()) and a yes/no for employee. I would like to have any user with the employee tag as true to open “Dashboard employee” and anyone marked as manager to open “Dashboard” I have tried some or and if expressions but I am not sure what I should use. I tried this but I am not sure where to specifiy which dashboard they should get
LOOKUP(USEREMAIL(),“users”, “email”, “Manager”),
LOOKUP(USEREMAIL(),“users”, “email”, “Employee”)
Thank you in advance.