Share via

Power apps_ User specific data display

Anonymous
2021-01-20T17:04:58+00:00

Hello guys,

I have created a power app with user sign up and login page. So, now I wanted to navigate the user to a specific page and I want that page to display user specific data. The page is going to stay constant but it will only have to display data of specific user that logs in. How do I do that??

Microsoft 365 and Office | SharePoint | For business | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2021-01-21T02:53:02+00:00

Hi Achyut,

As your description, You want to navigate to different pages depending on the user.

You can try the following  suggestions.

Have this on your OnStart Property of the app.

//set employee metadata up

Set(UserProfileUPN,Office365Users.MyProfile().UserPrincipalName)

Now use the variable in your look up to confirm that the user is in the sharepoint list.

If true navigate to the appropriatre screen.

If(LookUp(TB_USTHumanDPI, Title = UserProfileUPN).Title = UserProfileUPN, Navigate(ValidHome, ScreenTransition.Fade), Navigate(Other Screen Name, ScreenTransition.Fade))

We also suggest you post your question in Power Apps community, members there have more experience in how to develop apps.

You can refer tothis page.

Regards,

Jason

Was this answer helpful?

0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Anonymous
    2021-01-23T16:36:10+00:00

    Jason,

    Thank you and appreciate your response. It did help me to get there :)

    Was this answer helpful?

    0 comments No comments