Hi @Anonymous ,
The built-in User().Email will give you the logged in user. You just need a reference list, look this up and navigate to the relevant area depending on the result. If this list was called SectionList with fields UserMail and Section, you would do this at App OnStart
Set(vUserMail,User().Email);
Set(
vSection,
Lookup(
SectionList,
UserMail=vUserMail,
Section
)
);
If(
vSection="A",
Navigate(AScreen),
Navigate(BScreen)
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.