Hello,
I created a Flow that have multi-Approvals, i managed to put all the approvers name and comments in 2 differents columns depends if it's approved or rejected, and if one of the approvals rejected then all the validation process will be rejected. My question is :
1 - How can i know who rejected ?
2 - How can i put in the Approvals column all the approvers name and comments ? And in the rejected column the approvers name and comments for the people who rejected?
Thanks you in advance for your ideas and help
Flow multi-Approvals
Sharepoint columns
Hi @Anonymous ,
When working with approval actions, when there are multiple approvers, if one of the approvers rejected then all the process will be rejected.
Please check if the following configuration will be working for you.
The function used in Compose and Compose 2 is:
join(variables('Approver'),',')
Images for your reference:
Best regards,
Mabel
I normally do this by creating two string variables at the top of the flow. One will hold the Approver name and comments and the other will hold the rejector name and comments. Then in your Apply to each loop simply append the name and comments to the appropriate string variable in your condition. When you are done with the loop you can update the columns in the SharePoint list item using the variables. If you expect a lot of approvers and comments you may want to use array variables instead and then use a loop to read each element in the array to apply it to the SharePoint list.
Michael E. Gernaey
497
Super User 2025 Season 1
David_MA
436
Super User 2025 Season 1
Riyaz_riz11
244
Super User 2025 Season 1