cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
CP153319
Advocate V
Advocate V

Approvals - Multiple Approvers - How to capture all their responses and comments?

I'd like to set up an approval which requires multiple approvers (where the approval must be approve by everyone). Couple questions:

  1. How do I capture their responses, response dates and comments in a SharePoint list if there are two or more approvers? I can't see any option for how to do that.
  2. If there are two approvers what happens if one person approves and the other rejects? I don't have a lot of time for R&D so I'm hoping someone can just tell me so I can just skip to setting up a flow of approvals instead of adding multiple people to one. 

Thanks for reading. 

1 ACCEPTED SOLUTION

Accepted Solutions
v-xida-msft
Community Support
Community Support

Hi @CP153319,

 

Could you please share more details about your SharePoint list?

Further, could you please show a screenshot of your flow's configuration?

 

For your first question, you could consider take a try to add a Multiple lines of text type column in your SharePoint list to store all approvers' response, response date and comment. I have created a SharePoint list on my side and the data structure of it as below:11.JPG

Note: The Response column is a Multiple lines of text type column in my SharePoint list.

 

I have made a test on my side and please take a try with the following workaround:

  • Add a "When an item is created" trigger, specify Site Address and List Name.
  • Add a Variables-> "Initialize variable" action, Name set to AllResponses, Type set to String and Value set to empty.
  • Add a "Start an approval" action, Approval type set to Everyone from the assigned list, specify Assigned to .
  • Add a "Apply to each" action, input parameter set to Responses dynamic content of the "Start an approval" action. Within "Apply to each" action, add a "Compose" action, Inputs field set to following formula:

 

concat('ApproverName: ',item()?['responder']?['displayName'],' ResponseDate: ',item()?['responseDate'],' Comment: ',item()?['comments'],'</br>',variables('AllResponses'))

 

Add a "Set variable" action, Name set to AllResponses, Value set to output of the "Compose" action.

 

  • Under "Apply to each" action, add a "Update item" action, specify Site Address and List Name, The Responses field set to AllResponses variable.

Image reference:12.JPG

 

13.JPG

The flow works successfully as below:14.JPG

 

15.JPG

 

 

For your second question, any one of the two approvers reject the approval request, the whole approval request would be as rejected. In addition, if first approver reject the approval request, the whole approval request would be as rejected and the second approver could not make any response to this approval request.

 

 

Best regards,

Kris

Community Support Team _ Kris Dai
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

43 REPLIES 43
ScottShearer
Super User
Super User

You can capture responses from the approvers in two ways:

1) Reference the response summary data via dynamic properties.  This method does not include the approver comments

2) Loop through all the responses (Apply to each) and reference the Approver Name, Response and Comments columns

 

If one approver rejects, then the request is rejected and the approval ends at that time.

 

Please post if you have more questions or if this solves your issue.

 

In the Flow below, I update a multiline SharePoint column with the data in the variable at the end of the Flow.

 

ApproverComment1.jpgApproval2.png

 

 

 

If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.

Scott
v-xida-msft
Community Support
Community Support

Hi @CP153319,

 

Could you please share more details about your SharePoint list?

Further, could you please show a screenshot of your flow's configuration?

 

For your first question, you could consider take a try to add a Multiple lines of text type column in your SharePoint list to store all approvers' response, response date and comment. I have created a SharePoint list on my side and the data structure of it as below:11.JPG

Note: The Response column is a Multiple lines of text type column in my SharePoint list.

 

I have made a test on my side and please take a try with the following workaround:

  • Add a "When an item is created" trigger, specify Site Address and List Name.
  • Add a Variables-> "Initialize variable" action, Name set to AllResponses, Type set to String and Value set to empty.
  • Add a "Start an approval" action, Approval type set to Everyone from the assigned list, specify Assigned to .
  • Add a "Apply to each" action, input parameter set to Responses dynamic content of the "Start an approval" action. Within "Apply to each" action, add a "Compose" action, Inputs field set to following formula:

 

concat('ApproverName: ',item()?['responder']?['displayName'],' ResponseDate: ',item()?['responseDate'],' Comment: ',item()?['comments'],'</br>',variables('AllResponses'))

 

Add a "Set variable" action, Name set to AllResponses, Value set to output of the "Compose" action.

 

  • Under "Apply to each" action, add a "Update item" action, specify Site Address and List Name, The Responses field set to AllResponses variable.

Image reference:12.JPG

 

13.JPG

The flow works successfully as below:14.JPG

 

15.JPG

 

 

For your second question, any one of the two approvers reject the approval request, the whole approval request would be as rejected. In addition, if first approver reject the approval request, the whole approval request would be as rejected and the second approver could not make any response to this approval request.

 

 

Best regards,

Kris

Community Support Team _ Kris Dai
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you for taking the time to do that! 

 

I've chosen to take another route, not for design reasons but because I need the flow to keep pushing forward (can't have one person reject and it stops). 

 

I've marked your response as a solution because that would work and I've seen other people asking about that type of solution. 

 

Thanks

Hi,

 

I have about 8 approvers. I observed that the "Responses"Column in the SharePoint List doesnt hold any data until all 8 of them have approved.

 

Is there a way to make the responses update as the users are approving the item? Thats what I really need. I need to know who has approved/rejected and who hasn't any


@v-xida-msft wrote:

Hi @CP153319,

 

Could you please share more details about your SharePoint list?

Further, could you please show a screenshot of your flow's configuration?

 

For your first question, you could consider take a try to add a Multiple lines of text type column in your SharePoint list to store all approvers' response, response date and comment. I have created a SharePoint list on my side and the data structure of it as below:11.JPG

Note: The Response column is a Multiple lines of text type column in my SharePoint list.

 

I have made a test on my side and please take a try with the following workaround:

  • Add a "When an item is created" trigger, specify Site Address and List Name.
  • Add a Variables-> "Initialize variable" action, Name set to AllResponses, Type set to String and Value set to empty.
  • Add a "Start an approval" action, Approval type set to Everyone from the assigned list, specify Assigned to .
  • Add a "Apply to each" action, input parameter set to Responses dynamic content of the "Start an approval" action. Within "Apply to each" action, add a "Compose" action, Inputs field set to following formula:

 

concat('ApproverName: ',item()?['responder']?['displayName'],' ResponseDate: ',item()?['responseDate'],' Comment: ',item()?['comments'],'</br>',variables('AllResponses'))

 

Add a "Set variable" action, Name set to AllResponses, Value set to output of the "Compose" action.

 

  • Under "Apply to each" action, add a "Update item" action, specify Site Address and List Name, The Responses field set to AllResponses variable.

Image reference:12.JPG

 

13.JPG

The flow works successfully as below:14.JPG

 

15.JPG

 

 

For your second question, any one of the two approvers reject the approval request, the whole approval request would be as rejected. In addition, if first approver reject the approval request, the whole approval request would be as rejected and the second approver could not make any response to this approval request.

 

 

Best regards,

Kris



per time. 

 

Your suggestion will be most appreciated. Or am i missing out something u have explained above?

 

Regards

I got everything to work, which was great, however I can't seem to get the responses on seperate lines.  Is there a way to do this.  My form is created from a custom list in PowerApps, it looks like that is the only difference.  It's like the concat string doesn't understand </br>. Any help would be appreciated.

 

Anonymous
Not applicable

Thanks for posting this solution. I'm trying to do something like this and realised this too. My issue is that I'm calling in my approvers from a mult-person field and it puts the whole approval into a 'for each' loop. Is it still possible to capture the complete responses and act on them similar to this example?

Anonymous
Not applicable

How would you adjust the formula if I want to have all the response names, date, and outcome in separate fields? Not concatenated in the one field. 

Anonymous
Not applicable

Also for some reason I am getting all responses concatenated on one line entry in my SP list but then another line for one other approver - can't figure out how or why that is happening? 

Anonymous
Not applicable

I have tried this method, but every time I get to the "Update Item" portion it asks for a list name. However, I need this to say Folder Name. How can I work around this?

Anonymous
Not applicable

The 'Update Item' action is for SharePoint lists and as such wont have a 'Folder' option. Are you trying to update a document or something?

Anonymous
Not applicable

Yes, I am trying to create a flow for multidepartmental approval workflows. In our process at least 3 to 4 managers have to sign off on the document for Standard Operating Procedures, Policies, etc.

Anonymous
Not applicable

Hi,

 Try using the SharePoint 'Update File Properties' action in that case and you'll be able to update the item you're running the approval on. If I've mis-understood this then you might want to share an image of your flow so we can better understand what you're trying to do.

Thanks,

Jason.

Anonymous
Not applicable

Below is where I keep getting stuck. I want to choose who to email at the time of the approval request. I don't want the request to be automated because I need to review the formatting prior to the approval start. I will manually trigger the approval. I need to select the managers who will do the approval at the time of the request, because each document has different requirements, especially SOPs, Policies, etc.

 

I am not certain if I need the "Initialize Variable" component.I am not certain if I need the "Initialize Variable" component.

 

start and wait for an approval.JPG

start and wait for an approval4.JPG    start and wait for an approval5.JPG

Here is the flow overview.

start and wait for an approval2.JPG

You could create a column in your document Library called "Approval Type" and make it a "Choice" column where you can pick which type of approval the document requires. Then, in your flow, initialize a variable for this choice column and then run a switch on it where you have a separate approval for each choice. You can then send the approvals to the right people.

Anonymous
Not applicable

But this feature is already built into sharepoint as a feature of document validation. It would not appropriately track document validation if I created a separate column.

You said:

 

 I need to select the managers who will do the approval at the time of the request, because each document has different requirements, especially SOPs, Policies, etc.

 

If you add a column with the names of these different types of approvals you can do what I suggested. Then you don't have to manually do anything. You'd have a choice column with the choices "Policy 1, Policy 2, SOP 1, SOP 2 etc, etc" and then run a switch off of that where you can do a separate approval for each with the names of the approvers in them. 

 

Anonymous
Not applicable

Thank you. I think I am beginning to understand what you are talking about. However, I don't think I have the knowledge level to implement what you are suggesting without further help.

Each document type is stored in its own document library so I would not have to initiate based off the document type. However, I believe I could implement the same strategy using the managers names in the columns. I could plug in those persons who will always be required to sign off and then code so the column is referenced for the variable signers. If you have time to give me an example of how this would be implemented, I would be grateful. If not I understand.

Anonymous
Not applicable

Thanks for sharing the Flow image - a little better/easier to understand now. Not sure on the 'For each' on the left as I'm not sure how the compose information is then going into the update file properties - if its doing what you need it to do then fair enough.

 

For the condition on the right - using the variable 'AllResponses' is incorrect. There is a dynamic content option called 'Outcome' that captures whether or not all of the responses are Approve or Rejected. A good practice/test of what is being captured following the approval is to output every dynamic content option to a multi-line field somewhere until you're comfortable on what is being passed through.

 

Going back to the original question on a folder name being available in the options to update the file, I think this is no longer relevant and you're using the Update File Properties action correctly.

 

As another has suggested, a choice field to capture the type of document being reviewed for it to then route to the appropriate manager would be a better approach - the last thing you want to do is manually decide on anything and interact with it to route to the right place. What if you're on holiday for example - how does anything get approved then? The world still spins in your absence... Smiley Happy

Anonymous
Not applicable

P.S. I have a similar system for SOPs and approvers - I created a custom list that I look up for a name depending on a department and then choose an approver name in that list for the approval in the current library. That list of approvers can then change as required when people come and go without having to edit the flow each time.

Helpful resources

Announcements

Exclusive LIVE Community Event: Power Apps Copilot Coffee Chat with Copilot Studio Product Team

It's time for the SECOND Power Apps Copilot Coffee Chat featuring the Copilot Studio product team, which will be held LIVE on April 3, 2024 at 9:30 AM Pacific Daylight Time (PDT).     This is an incredible opportunity to connect with members of the Copilot Studio product team and ask them anything about Copilot Studio. We'll share our special guests with you shortly--but we want to encourage to mark your calendars now because you will not want to miss the conversation.   This live event will give you the unique opportunity to learn more about Copilot Studio plans, where we’ll focus, and get insight into upcoming features. We’re looking forward to hearing from the community, so bring your questions!   TO GET ACCESS TO THIS EXCLUSIVE AMA: Kudo this post to reserve your spot! Reserve your spot now by kudoing this post.  Reservations will be prioritized on when your kudo for the post comes through, so don't wait! Click that "kudo button" today.   Invitations will be sent on April 2nd.Users posting Kudos after April 2nd at 9AM PDT may not receive an invitation but will be able to view the session online after conclusion of the event. Give your "kudo" today and mark your calendars for April 3, 2024 at 9:30 AM PDT and join us for an engaging and informative session!

Tuesday Tip: Unlocking Community Achievements and Earning Badges

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!     THIS WEEK'S TIP: Unlocking Achievements and Earning BadgesAcross the Communities, you'll see badges on users profile that recognize and reward their engagement and contributions. These badges each signify a different achievement--and all of those achievements are available to any Community member! If you're a seasoned pro or just getting started, you too can earn badges for the great work you do. Check out some details on Community badges below--and find out more in the detailed link at the end of the article!       A Diverse Range of Badges to Collect The badges you can earn in the Community cover a wide array of activities, including: Kudos Received: Acknowledges the number of times a user’s post has been appreciated with a “Kudo.”Kudos Given: Highlights the user’s generosity in recognizing others’ contributions.Topics Created: Tracks the number of discussions initiated by a user.Solutions Provided: Celebrates the instances where a user’s response is marked as the correct solution.Reply: Counts the number of times a user has engaged with community discussions.Blog Contributor: Honors those who contribute valuable content and are invited to write for the community blog.       A Community Evolving Together Badges are not only a great way to recognize outstanding contributions of our amazing Community members--they are also a way to continue fostering a collaborative and supportive environment. As you continue to share your knowledge and assist each other these badges serve as a visual representation of your valuable contributions.   Find out more about badges in these Community Support pages in each Community: All About Community Badges - Power Apps CommunityAll About Community Badges - Power Automate CommunityAll About Community Badges - Copilot Studio CommunityAll About Community Badges - Power Pages Community

Tuesday Tips: Powering Up Your Community Profile

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!   This Week's Tip: Power Up Your Profile!  🚀 It's where every Community member gets their start, and it's essential that you keep it updated! Your Community User Profile is how you're able to get messages, post solutions, ask questions--and as you rank up, it's where your badges will appear and how you'll be known when you start blogging in the Community Blog. Your Community User Profile is how the Community knows you--so it's essential that it works the way you need it to! From changing your username to updating contact information, this Knowledge Base Article is your best resource for powering up your profile.     Password Puzzles? No Problem! Find out how to sync your Azure AD password with your community account, ensuring a seamless sign-in. No separate passwords to remember! Job Jumps & Email Swaps Changed jobs? Got a new email? Fear not! You'll find out how to link your shiny new email to your existing community account, keeping your contributions and connections intact. Username Uncertainties Unraveled Picking the perfect username is crucial--and sometimes the original choice you signed up with doesn't fit as well as you may have thought. There's a quick way to request an update here--but remember, your username is your community identity, so choose wisely. "Need Admin Approval" Warning Window? If you see this error message while using the community, don't worry. A simple process will help you get where you need to go. If you still need assistance, find out how to contact your Community Support team. Whatever you're looking for, when it comes to your profile, the Community Account Support Knowledge Base article is your treasure trove of tips as you navigate the nuances of your Community Profile. It’s the ultimate resource for keeping your digital identity in tip-top shape while engaging with the Power Platform Community. So, dive in and power up your profile today!  💪🚀   Community Account Support | Power Apps Community Account Support | Power AutomateCommunity Account Support | Copilot Studio  Community Account Support | Power Pages

Super User of the Month | Chris Piasecki

In our 2nd installment of this new ongoing feature in the Community, we're thrilled to announce that Chris Piasecki is our Super User of the Month for March 2024. If you've been in the Community for a while, we're sure you've seen a comment or marked one of Chris' helpful tips as a solution--he's been a Super User for SEVEN consecutive seasons!   Since authoring his first reply in April 2020 to his most recent achievement organizing the Canadian Power Platform Summit this month, Chris has helped countless Community members with his insights and expertise. In addition to being a Super User, Chris is also a User Group leader, Microsoft MVP, and a featured speaker at the Microsoft Power Platform Conference. His contributions to the new SUIT program, along with his joyous personality and willingness to jump in and help so many members has made Chris a fixture in the Power Platform Community.   When Chris isn't authoring solutions or organizing events, he's actively leading Piasecki Consulting, specializing in solution architecture, integration, DevOps, and more--helping clients discover how to strategize and implement Microsoft's technology platforms. We are grateful for Chris' insightful help in the Community and look forward to even more amazing milestones as he continues to assist so many with his great tips, solutions--always with a smile and a great sense of humor.You can find Chris in the Community and on LinkedIn. Thanks for being such a SUPER user, Chris! 💪 🌠  

Tuesday Tips: Community Ranks and YOU

TUESDAY TIPS are our way of communicating helpful things we've learned or shared that have helped members of the Community. Whether you're just getting started or you're a seasoned pro, Tuesday Tips will help you know where to go, what to look for, and navigate your way through the ever-growing--and ever-changing--world of the Power Platform Community! We cover basics about the Community, provide a few "insider tips" to make your experience even better, and share best practices gleaned from our most active community members and Super Users.   With so many new Community members joining us each week, we'll also review a few of our "best practices" so you know just "how" the Community works, so make sure to watch the News & Announcements each week for the latest and greatest Tuesday Tips!This Week: Community Ranks--Moving from "Member" to "Community Champion"   Have you ever wondered how your fellow community members ascend the ranks within our community? What sets apart an Advocate from a Helper, or a Solution Sage from a Community Champion? In today’s #TuesdayTip, we’re unveiling the secrets and sharing tips to help YOU elevate your ranking—and why it matters to our vibrant communities. Community ranks serve as a window into a member’s role and activity. They celebrate your accomplishments and reveal whether someone has been actively contributing and assisting others. For instance, a Super User is someone who has been exceptionally helpful and engaged. Some ranks even come with special permissions, especially those related to community management. As you actively participate—whether by creating new topics, providing solutions, or earning kudos—your rank can climb. Each time you achieve a new rank, you’ll receive an email notification. Look out for the icon and rank name displayed next to your username—it’s a badge of honor! Fun fact: Your Community Engagement Team keeps an eye on these ranks, recognizing the most passionate and active community members. So shine brightly with valuable content, and you might just earn well-deserved recognition! Where can you see someone’s rank? When viewing a post, you’ll find a member’s rank to the left of their name.Click on a username to explore their profile, where their rank is prominently displayed. What about the ranks themselves? New members start as New Members, progressing to Regular Visitors, and then Frequent Visitors.Beyond that, we have a categorized system: Kudo Ranks: Earned through kudos (teal icons).Post Ranks: Based on your posts (purple icons).Solution Ranks: Reflecting your solutions (green icons).Combo Ranks: These orange icons combine kudos, solutions, and posts. The top ranks have unique names, making your journey even more exciting! So dive in, collect those kudos, share solutions, and let’s see how high you can rank!  🌟 🚀   Check out the Using the Community boards in each of the communities for more helpful information!  Power Apps, Power Automate, Copilot Studio & Power Pages

Find Out What Makes Super Users So Super

We know many of you visit the Power Platform Communities to ask questions and receive answers. But do you know that many of our best answers and solutions come from Community members who are super active, helping anyone who needs a little help getting unstuck with Business Applications products? We call these dedicated Community members Super Users because they are the real heroes in the Community, willing to jump in whenever they can to help! Maybe you've encountered them yourself and they've solved some of your biggest questions. Have you ever wondered, "Why?"We interviewed several of our Super Users to understand what drives them to help in the Community--and discover the difference it has made in their lives as well! Take a look in our gallery today: What Motivates a Super User? - Power Platform Community (microsoft.com)

Users online (6,787)