Hi @Anonymous
In the OnStart property of the app
Set(
useremail,
User().Email
);
If(
IsBlank(
LookUp(
SPlist,
email = useremail
)
),
Navigate(
ScrNewUser,
None
),
Navigate(
ScrFirst,
None
)
)
I prefer to use Email because names can sometimes be the same. In the formula on start, the app checks whether the user's email is in the list and if not, it goes to the screen for entering a new user. This screen will probably contain a Form set with its default mode as New
If a match to the lookup is found, (ie, its not blank), then it navigates to the standard opening screen for established users.