Hi,
I have created an app and incorporated the pre-created intro screen to my app with pictures. I was wondering if there is a formula for OnVisible to only show this screen to new users and never again. If you have a solution to this problem please let me know.
Thanks,
Ryan
Solved! Go to Solution.
Here's some instructions on how to do that:
1. Create a new Sharepoint List called AppUsers. This table should have a column called UserEmail.
2. Open PowerApps and connect to your new AppUsers table.
3. Put the following code in your App OnStart property. If the current User() email is not found in the AppUsers SP List your app will navigate to the 1st time introduction screen and then add the User() email to the AppUsers SP List.
If(
IsBlank(LookUp(AppUsers,UserEmail = User().Email)),
Navigate(your_first_time_app_screen,None),
Patch(AppUsers,Defaults(AppUsers),{UserEmail: User().Email})
);
Let me know if you have any questions
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
Here's some instructions on how to do that:
1. Create a new Sharepoint List called AppUsers. This table should have a column called UserEmail.
2. Open PowerApps and connect to your new AppUsers table.
3. Put the following code in your App OnStart property. If the current User() email is not found in the AppUsers SP List your app will navigate to the 1st time introduction screen and then add the User() email to the AppUsers SP List.
If(
IsBlank(LookUp(AppUsers,UserEmail = User().Email)),
Navigate(your_first_time_app_screen,None),
Patch(AppUsers,Defaults(AppUsers),{UserEmail: User().Email})
);
Let me know if you have any questions
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
Hi mdevaney,
I set up a Sharepoint List and tried using this formula and it still would bring to the intro screen. Is there a piece I am missing or another formula that I could test out?
User | Count |
---|---|
257 | |
110 | |
97 | |
57 | |
40 |