Dear Team,
I have quick question regards to the PowerApps. I want to build an apps which basically allow user to enter their data for the perform review each year. I have done simple one which fill the form and attach to the app attachment.
However, I think it is not enough I want to customize by replacement of using attach file to fill direct on the apps form and it needs hierrachy structure. Each staff will login to the apps to enter their information/data. Manager will have access to see all staff who under their supervision.
Could we do that in the PowerApps? If so, how do we do it?
If you didn't what I try to explain, please let me know so I could give more simply work structure to hit the point.
Thanks,
Phearin
@Anonymous
Thank for interested in this project.
I also start to program as well. It is just simple app which idea to allow everyone to attached their soft copy into the system only.
Thanks,
Phearin
Thank you for your contacting me on this topic.
For the performance review, I have parked it for some reasons behind that apps. Because I do need to redesign the flow once again. The item which I had just only you can submit your document as attached file and submit it only.
Thanks,
Phearin
@phearin could you be kind enough to reply incase you have the app built ?
hi .. is this App already build? can i have the app for my project? thankyou so much, i d'ont really know how to proram but i really want to learn.
Hi @phearin have you build the application yet ? If yes could you share my the msapp file please. I would love to take a look at it.
thanks.
Hi @phearin ,
Could you please share a bit more about your scenario?
Do you want the staffs to enter their info when they login in your app, and want the manager to see all submitted staff info when he login in your app?
Based on the needs that you mentioned, I think PowerApps could achieve your needs. On your side, you could create separated screen for the staffs and manager (Staff Screen and Manager Preview Screen).
Within the Staff screen, you could add a Edit form (which connects to a specific data source) to collect staff's entry. Within the Manager Preview Screen, you could add a Gallery, connect it to same data source as that in the Edit form, use the Gallery to list all submitted info from the staffs.
In addition, you need also to configure a Access Level within your app. When the staff login in your app, navigate him to the Staff Screen, when the manager login in your app, navigate him to the Manager Preview Screen. You could consider save the related managers' email address into a Collection, then compare current sign in user's email with the Collection.
I have made a test on my side, please take a try with the following workaround:
Set the OnStart property of the App control to following:
ClearCollect(
ManagerCollection,
"Manager1@email.com",
"Manager2@email.com",
"Manager3@email.com"
...
);
If(
User().Email in ManagerCollection, /* <-- Check current sign in user is a manager or a staff */
Navigate(ManagerPreviewScreen, ScreenTransition.None),
Navigate(StaffScreen, ScreenTransition.None)
)
Note: Within your app, do not provide any Navigation functionality between the ManagerPreviewScreen and the StaffScreen. To make sure the the ManagerPreviewScreen is separated from the StaffScreen.
Please take a try with above solution, then check if the issue is solved.
Best regards,
Hi @phearin ,
MS.Ragavendar
32
Rajkumar_M
16
Super User 2025 Season 1
mmbr1606
16
Super User 2025 Season 1