Show Onboarding Sequence Once?

Is there any way to show an initial startup form just once, such as an onboarding sequence?

Solved Solved
0 3 278
1 ACCEPTED SOLUTION

UX. OPTIONS. STARTING VIEW

I put:
IF(
NOT(IN(
USEREMAIL(),
USERS[USER_EMAIL]
)),
โ€œADD_NEW_USERโ€,
โ€œENCOURAGEMENT_DAILYโ€
)

Which forces new users to see the ADD_NEW_USER form. If they already exist, it shows the ENCOURAGMENT_DAILY Form.

But in my, I donโ€™t want NEW USERS NOT in the system to see anything. So I add the following to the show ifs of all of my forms:

IN( USEREMAIL(),USERS[USER_EMAIL])

View solution in original post

3 REPLIES 3

UX. OPTIONS. STARTING VIEW

I put:
IF(
NOT(IN(
USEREMAIL(),
USERS[USER_EMAIL]
)),
โ€œADD_NEW_USERโ€,
โ€œENCOURAGEMENT_DAILYโ€
)

Which forces new users to see the ADD_NEW_USER form. If they already exist, it shows the ENCOURAGMENT_DAILY Form.

But in my, I donโ€™t want NEW USERS NOT in the system to see anything. So I add the following to the show ifs of all of my forms:

IN( USEREMAIL(),USERS[USER_EMAIL])

Thanks @Lucinda_Mason

Works a treat.

You are welcome. I have learned so much through this forum. It is such a helpful community.

Top Labels in this Space