Hi All,
What is the Expression i have use to Hide my ref View,
my scenario is to Hide the onboarding screen for logged users and for new user the onboarding will be appear.
Pls Guide me on this, Thanks
Hi All,
What is the Expression i have use to Hide my ref View,
my scenario is to Hide the onboarding screen for logged users and for new user the onboarding will be appear.
Pls Guide me on this, Thanks
How does you app know whether a user is new or returning?
Thanks Marc,
From your link i get to know another topics called Starting View… That is the Exact way and formula i need… It works perfectly
[FAQ: How do I do something automatically the first time someone uses my app?](https://community.appsheet.com/t/faq-how-do-i-do-something-automatically-the-first-time-someone-uses-my-app/27136) Tips & Tricks ?
How do I setup/register a new app user automatically? How can I do something automatically the first time a user uses the app? This example assumes your app requires sign-in, and that you have a table named Users, each row of which describes a single user of your app. Such a table is a common way to store information about your app users and as an alternative to User Settings to store their individual app settings. The Users table is assumed to have a column named Email to store the email addr…
if(
not(in(useremail(), Sheetname[User email])),
“VIewname1”,
“Viewname2”
)