Hello Community,
I need your help please!
I am NEW to Power Apps, I have only created a few basic forms, and need help with a new Task.
I need to create a form using Power Apps, where I have different stages so I thought about a Multiple Form
The form has different stages
User Submission Form - they complete this then submit, then the manager needs to complete a form
Managers Approval - they see the content submitted by user (Display Mode), the Manager needs to complete a section of the form and submit
HR Approval - they see the content submitted by user & manager (Display Mode, HR need to complete a section of the form and submit
Legal Approval - they see the content submitted by user, manager & HR, they then have the option to click Approve or Reject (Choice Column) then submit
From that I then need to generate a report, using Power Bi? so the data from the Form I think would need to be stored in a SP List from Power Apps
I need help with regards to formula for Displaying content to the approvers to only Edit the sections that are relevant to them.
Suggestions / Screen Shots would really help me
Thank you
Claire
Solved! Go to Solution.
You're using form for two terms in PowerApps. One is a form and the other is a screen. You should familiarize yourself with those two terms in PowerApps so your message is better understood.
It looks like you would want five screens, one for submission, Manager Approval, HR Approval, Legal Approval, and finally a success screen.
On each screen, you'll want a form, connected to the same data. The difference would be you remove the data cards that are not relevant to that approver.
You would have a button on each screen that has a similar formula to this:
Patch(
SharePointSource,
GalleryMyItems.Selected,
FormSubmissions.Updates);
Navigate(ScreenSuccess)
A variation, say for the Manager Approval would be like:
Patch(
SharePointSource,
GalleryMyItems.Selected,
FormManager.Updates);
Navigate(ScreenSuccess)
You're using form for two terms in PowerApps. One is a form and the other is a screen. You should familiarize yourself with those two terms in PowerApps so your message is better understood.
It looks like you would want five screens, one for submission, Manager Approval, HR Approval, Legal Approval, and finally a success screen.
On each screen, you'll want a form, connected to the same data. The difference would be you remove the data cards that are not relevant to that approver.
You would have a button on each screen that has a similar formula to this:
Patch(
SharePointSource,
GalleryMyItems.Selected,
FormSubmissions.Updates);
Navigate(ScreenSuccess)
A variation, say for the Manager Approval would be like:
Patch(
SharePointSource,
GalleryMyItems.Selected,
FormManager.Updates);
Navigate(ScreenSuccess)
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
190 | |
53 | |
51 | |
35 | |
33 |
User | Count |
---|---|
268 | |
91 | |
80 | |
68 | |
67 |