cancel
Showing results for 
Search instead for 
Did you mean: 
Reply

Taking a value from MS Forms and using it in Flow

Hello, so I have this flow I've been working on for the past week or so. It's purpose is to move a file from one folder to another once it's approved. I've managed to basically everything except allow the user to select who  needs to approve the file. At the moment I'm using a MS Form to gather more information from the user on their file like the due date and department that gets updated to a sharepoint list that keeps track of all the files that are being uploaded for approval (this gets updated at the end of the flow on the approval status). What I want to do is take the Department value and use it to get a list of user under that department and then have the user select who needs to approve the file. This could be more than one person so I'd also need to make sure that I can loop or branch off and do them all at the same time. Is there a way to do this? If not, no problem, thanks anyways. At the moment the Get Manager action is unecessary since I've been using my own email for testing purposes, but I thought initially that it could be useful.

 
Here's a couple pictures of my flow, form, and list.

Flow_part1.PNG

 

Flow_part2.PNG

 

Form.PNG

SharepointList.PNG

 

 

Thanks,

LeAnn

 

1 ACCEPTED SOLUTION

Accepted Solutions

Thanks to @v-xida-msft for setting me onto the right path of figuring this out I was able to get it working.

 

 

It looks a bit messy, but it works. I had to create a bunch of variables since to parse a multiple choice reponse from MS Forms requires extra steps compared to parsing a multiple choice response from Sharepoint. There is possibly an easier way to complete this but this workaround worked for me. I also got some help from an article (https://flow.microsoft.com/en-us/blog/approval-reminders-using-parallel-branches/).

 

After initializing a ton of variables: first 4 are string, next 3 are array, and the last 3 are integer with initial values at 0. The expressions used are in order of appearance in the flow:

Compose 2:

trim(replace(replace(replace(replace(variables('ApproverName'),'"',' '),'[',' '),']',' '),' , ',' '))

Compose 3:

split(variables('Name'), ' ')

Do Until 2:

length(variables('FirstName'))

Set variable 6:

concat(variables('FirstName')[variables('z')],' ', variables('LastName')[variables('z')])

Compose:

concat(item()?['Mail'],';',variables('ApproversList'))

The last apply to each isn't fully working but this is the idea and was from the article I mentioned above. Hope this helps anyone else out.

 

Here's the workaround that I came up with:

flow1.PNGflow2.PNGflow3.PNGflow4.PNGflow5.PNGflow6.PNG

View solution in original post

7 REPLIES 7
v-xida-msft
Community Support
Community Support

Hi @leanns,

 

Do you want to get a list of user within your Organization based on the Department value from your MS Form?

 

I think there is something wrong with your flow's configuration. In addition, I think the "Get Manager (V2)" action could not achieve your needs.

 

If you want to get a list of user within your Organization based on the Department value from your MS Form, please move your approval steps into the "Apply to each" action.

 

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

 

2.JPG

Within "Search term" field of the "Search for users" action, type the Department dynamic content of the "Get response details" action.

 

The details of the "Apply to each 2" action as below:3.JPG

Within Inputs field of the "Compose" action of "Apply to each 2" action, type the following formula:

concat(item()?['Mail'],';',variables('EmailArray'))

Note: Using the "Initialize variable" action to initialize a String variable (Called EmailArray) to store all email address of the users under the Department value.

 

Please take a try with above solution that I provided, then let me know if it could solved your problem.

 

 

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.

Hello @v-xida-msft,

 

Thank you for your input. I appreciate it. I believe this will work, but the values under Department aren't names of people or emails. Would it be better to have a list of all the people that could be approvers instead of listing their department and then getting their emails? I tried your solution but the flow failed due to the values I have listed under Department. If this was just a list of people's names (not emails), I should be able to do the same concept that you provided, correct? If this is the case, would anything be different if I had the user select multiple names?

 

**Edit: After messing around with the Department value, I ended up changing it to a list of names and it worked perfectly. Only issue now that as I look at it, I believe it's going to send the approvals sequential when I'd like to have them as parallel since everyone replies at a different pace and have different time frames to complete the approval. Basically, I don't want the first person out of say 3 forget to approve or reject until after its due. Then going to the other 2 people after its late and them getting annoyed because it's the first time they're seeing it. Is there a way to do this yet in flow? I know how to make parallel branches but I'm not sure how it would apply to this situation. **

 

What do you mean by "something wrong with my flow's configuration"? Also, with this solution that you provided, I can just insert it in my flow where it needs to be and drag up my approvals into the Apply for Each and thereotically have a completed flow that I am looking for?

 

Thanks,

leanns

 

 

After a long day of testing different options, I've come to the conclusion that I'm missing something with this selecting approvers thing. I did figure out that I have to have the form list the names of the people I want to have approve the files later on, but I'm struggling to get it so I can select multiple names rather than just one at a time.

 

The Approver token (originally Department, I switched it during the testing) output format (string): ["Name 1","Name 2","Name 3"] etc

 

I want to get just the names so I can put it into the search for users action like you provided earlier. Is this possible?

 

I've mangled together multiple expressions that can extract the first part of the string, but it's not what I want to happen. I've messed around with indexes, variables, composing, substrings, and everything that I could. I feel like that I'm missing something simple and I'm not sure what it is.

 

Thanks,

leanns

Thanks to @v-xida-msft for setting me onto the right path of figuring this out I was able to get it working.

 

 

It looks a bit messy, but it works. I had to create a bunch of variables since to parse a multiple choice reponse from MS Forms requires extra steps compared to parsing a multiple choice response from Sharepoint. There is possibly an easier way to complete this but this workaround worked for me. I also got some help from an article (https://flow.microsoft.com/en-us/blog/approval-reminders-using-parallel-branches/).

 

After initializing a ton of variables: first 4 are string, next 3 are array, and the last 3 are integer with initial values at 0. The expressions used are in order of appearance in the flow:

Compose 2:

trim(replace(replace(replace(replace(variables('ApproverName'),'"',' '),'[',' '),']',' '),' , ',' '))

Compose 3:

split(variables('Name'), ' ')

Do Until 2:

length(variables('FirstName'))

Set variable 6:

concat(variables('FirstName')[variables('z')],' ', variables('LastName')[variables('z')])

Compose:

concat(item()?['Mail'],';',variables('ApproversList'))

The last apply to each isn't fully working but this is the idea and was from the article I mentioned above. Hope this helps anyone else out.

 

Here's the workaround that I came up with:

flow1.PNGflow2.PNGflow3.PNGflow4.PNGflow5.PNGflow6.PNG

Anonymous
Not applicable

hello . I have problem , i make form , and i want use ( your Employee ID in form for lookup in SharePoint but in second list don,t use id   ) first list Name( Master contact List)  and second list name (New_customer), i don't know best flow used . please help me 

@Anonymous 

Please post a screen shot of your Flow in edit mode.  Those want to help you will need to see that in order to assist.  The more detail the better.

Also, it would likely be a better idea to start a new post for your issue rather than continuing this thread.

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

Scott

Why don't you just add a people column to you departmental approvers list? Then populate with email addresses (which are always unique as names are not necessarily). If you want name details in the other columns then run a flow to go and get the details from the person's profile based on the email address in the people column to populate the other fields. The display of a people column could be the approvers display name too, however you can then use the email address to get any information and for sending approval requests rather than names, so you can get rid of all your variables etc. used to trim and build names. If you don't need the names in the list but need to display the approvers differently then get their name information from their profile using the email address in the people column. You can get first name, last name and display name from here along with lots of other information.

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24  17 @Anil_g  7 @ManishSolanki  13 @eetuRobo  5 @David_MA  10 @VishnuReddy1997  5 @SpongYe  9JhonatanOB19932 (tie) @Nived_Nambiar  8 @maltie  2 (tie)   @PA-Noob  2 (tie)   @LukeMcG  2 (tie)   @tgut03  2 (tie)       Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate  @Deenuji  12@ManishSolanki 19 @Anil_g  10 @NathanAlvares24  17 @VishnuReddy1997  6 @Expiscornovus  10 @Tjan  5 @Nived_Nambiar  10 @eetuRobo  3 @SudeepGhatakNZ 8     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2   Anil_g2   SharonS2  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (1,566)