I am new to PowerApps and am trying to develop a system to track information about people (organization, position, degree, etc.).
I have figured out how to make the log in work for each user from a SharePoint list, but I am wondering if there is a way to direct each user to a details/edit screen where they can view/edit their own information after they successfully log in. Each user in the SharePoint list has a Username, Password, and unique ID. I have an Excel table (in Office 365) that has the details for each person (e.g. Unique ID, username, first name, last name, organization, position, degree, etc.)
I found code online that will direct people to a specific page eg.:
Switch(Param("WhatScreen"),
"1", Screen1,
"2", Screen2,
"3", Screen3
)
I would like for user with Unique ID 1 to be directed to a view/edit details page for user Unique ID 1 with the details from the the Excel table. I will have approximately 700 people in the system. I was hoping to use some kind of logic so that if user with unique ID 1 logs in, they will be directed to the screen with details for unique ID 1, if user with unique ID 2 logs in, then they are directed to the screen with details for unique Id 2.....etc. to user 700. Is this possible or will I have to write a separate line for each user to direct them to the correct screen?

Report
All responses (
Answers (