Starting view Onboarding assistance

Hi community,

I need some assistance. I have an if expression in my starting view. The user decides if they want to see the onboarding on startup each time until they opt out which changes the value on the users table for the column [Seen_Onboard_App_1]. The functionality was working last week but now I added a new user and I am not getting it to work anymore. I tried adjusting the expression below but it isn't working. Any idea why?

if(INDEX(Current_User[Seen_Onboard_App_1], 1) ="Yes",Onboarding,App Menu Page)

if(INDEX(Current_User[Seen_Onboard_App_1], 1) =TRUE,Onboarding,App Menu Page)

if(INDEX(Current_User[Seen_Onboard_App_1], 1) ="TRUE",Onboarding,App Menu Page)

Solved Solved
1 1 143
1 ACCEPTED SOLUTION

Added "" quotes to the views

if(INDEX(Current_User[Seen_Onboard_App_1], 1) ="Yes","Onboarding","App Menu Page")

And now its working again

 

View solution in original post

1 REPLY 1

Added "" quotes to the views

if(INDEX(Current_User[Seen_Onboard_App_1], 1) ="Yes","Onboarding","App Menu Page")

And now its working again

 

Top Labels in this Space