cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
laurakaplan99
Regular Visitor

Help building Flow to get response content from Microsoft Forms into a new OneNote page

Hello!  I am trying to build a Flow for the first time and am stuck building it out so that the full content from the Microsoft Form response transfers over into/creates a new page in my OneNote Notebook.  I tried using a template which only timestamps and indicates a response was received- doesn't actually include the content.  Tried searching for help and found a way to build a flow to create an HTML Table in OneNote which doesn't seem to make sense for my response data (it is a survey requesting a meeting for help on specific challenges-- pretty detailed responses on a 14-item Form survey). 

 

Your help is appreciated!

2 ACCEPTED SOLUTIONS

Accepted Solutions

Ah, got it...ok.  So, OneNote formats the posts using HTML (check this article from Prarie Developer)  so you can use that to (hopefully) format your post from within Flow.

If you're not familiar with HTML, there are a bunch of online editors that you can use to build your document and it shows the code on the side.  Here's one I found.  I would just put some kind of weird character around the 'dynamic value' you want, and then replace the phrase and weird characters with the actual dynamic value when you drop it into Flow.

If you already know HTML, then you're off to the races!  But I don't, so that's how I would do it Smiley Happy

 

Keep us posted.

-Ed-

 

If this reply has answered your question or resolved your challenge, please consider marking it as a Solution. This helps other users find it more easily via search.

View solution in original post

Hi @laurakaplan99 ,

 

For getting multiple checkbox values with expected format, please refer to the similar thread and see if it helps:

https://powerusers.microsoft.com/t5/Building-Flows/Saving-multiple-checkboxes-values-from-forms-to-e...

Please take a try.

 

Best Regards,

Community Support Team _ Barry
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

12 REPLIES 12
edgonzales
Super User
Super User

@laurakaplan99 

Hi there!  This is the weird thing about the Forms connector, but after you have the trigger that a response was submitted, you'll want to add an action "Get Response Details".  This will get the detail I think you are looking for.

 

It also might kick off an Apply to Each loop, but don't panic.  Just do your OneNote actions inside that loop and you should be fine.

 

Keep us posted.

-Ed-

 

 

If this reply has answered your question or resolved your challenge, please consider marking it as a Solution. This helps other users find it more easily via search.

Thanks for the advice.  I'm getting close but not there yet.  Currently it is sending the content from the Form to OneNote but my latest issue is that it appears all jumbled together into one long paragraph (vs. separate lines for each response).  Any tips to separate out each question for separate, spaced out responses so they are easy to view by the committe who'll use the data?  Thank you again!

You bet.  When you're adding the stuff to OneNote, try adding spaces or returns in between each of the response fields (The dynamic values).  You can use whatever you'd like, but here's an example of one I did for events:

20190705c.PNG

 

So here's what I have input for OneNote:

 

OneNote response field.PNG

 

I hit "return" to space out each line of data/separate question, however here is how it shows up in OneNote:

 

OneNote screenshot.PNG

Ah, got it...ok.  So, OneNote formats the posts using HTML (check this article from Prarie Developer)  so you can use that to (hopefully) format your post from within Flow.

If you're not familiar with HTML, there are a bunch of online editors that you can use to build your document and it shows the code on the side.  Here's one I found.  I would just put some kind of weird character around the 'dynamic value' you want, and then replace the phrase and weird characters with the actual dynamic value when you drop it into Flow.

If you already know HTML, then you're off to the races!  But I don't, so that's how I would do it Smiley Happy

 

Keep us posted.

-Ed-

 

If this reply has answered your question or resolved your challenge, please consider marking it as a Solution. This helps other users find it more easily via search.

This was super helpful and I am *almost* there with getting it how I want it.  The only remaining glitch is that if multiple answers are chosen for a question on Microsoft Forms, they are still being lumped together (delineated in brackets with quotation marks in between).  I'd love for them to be listed out (hit return in between each response item even if there are multiple selected responses per question) so they are more easily readable. Here's what it is creating now as an example:

sample mult responses.PNG

 

Hi @edgonzales  & @laurakaplan99 ,

 

I did tried to create some text in one note (Business) without the HTML tags and it did displayed with correct formatting (Spaces, carriage return etc.)

 

I did also tried with HTML tags but it displayed the text with HTML tags.

 

Let me know how it goes? 

 

Thanks

 

 

 



Did I answer your question? Mark my post as a solution!

If you liked my response, please consider giving it a thumbs up


Proud to be a Flownaut!

Learn more from my blog
Power Automate Video Tutorials

Hi @laurakaplan99 ,

 

For getting multiple checkbox values with expected format, please refer to the similar thread and see if it helps:

https://powerusers.microsoft.com/t5/Building-Flows/Saving-multiple-checkboxes-values-from-forms-to-e...

Please take a try.

 

Best Regards,

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

Hello!  I apologize I have been out of the office for a bit but am back to working on this project.  I still am stuck with my most recent issue around formatting (see my previous post and screenshots about brackets and quotation marks).  I tried combing through the suggested thread about replacing characters you cited but I'm afraid my skills (or lack thereof) are getting in the way of me understanding how to apply that to my flow.  I do not have an "input" chunk within my flow like the one that is referenced in the thread.  Any further help would be greatly appreciated.  

Hi @laurakaplan99 ,

 

Here is what you need to do.

 

1. Add a flow action before "Create page in a section" (OneNote) called "Get response details" (Form). See the link which mentioned by @v-bacao-msft 

 

2. Once you added the flow action ("Get response details") then name the 'FormId' as 'MultiValueText' and map the 'Response Id' to 'Please endores your reason(s) for this MTSS request'.

 

3. Next we need to format the mutli selected values.

So in your example ["Consult for academic progress or learning issues", "Consult for addressing challenging behaviors"]

 

First we need to replace the the square brackets, double quotations and add a carriage return instead of the commas so that it will display line by line.

 

To do this add a new flow step "Compose" below "Get response details". click the Inputs text box then on your right handside you get Dynamics content and Expression tab menu.

 

Under the expression tab add the below replace functions which will remove [" character.

 

replace( , '["', '')

 

Once you added the function then insert your cursor after 'replace(' statement. See the link demo and add the form reponse object 'Reason for MTSS request'.

 

Try this and see whether it replaces the [" character.

 

Once you done then edit the flow and extend the replace function to replace ]" and comma to replace with carriage return character which I think '\n'.

 

Yes I know it is a bit complicated. That's the reason I mentioned to try only one replace expression and see the results. Then you can extend it one at a time.

 

If you need any more help let me know.

 

If this reply has answered your question or solved your issue, please mark this question as answered. Answered questions helps users in the future who may have the same issue or question quickly find a resolution via search. If you liked my response, please consider giving it a thumbs up.

 

Thanks



Did I answer your question? Mark my post as a solution!

If you liked my response, please consider giving it a thumbs up


Proud to be a Flownaut!

Learn more from my blog
Power Automate Video Tutorials

I greatly appreciate the people trying to offer detailed support but I think what I need is somebody to help me live/in real time.  I get stuck after the second step you describe of adding a new action to "get response details" inserted before creating a page in OneNote-- do you mean add a second "get response details" action (it populates automatically as "Get response details 2" since I already have the first one created (from the template).  Then, I get stuck on the next step as it won't give me options to "map to 'please endorse your reason...." for Response ID.  When I etner Form ID: MultiValueText it requires I choose from a drop-down menu or "enter custom value" so I selected "enter custom value."  Not sure if that is right or wrong.  Then the options for Response ID automatically reduce down to just one option of "List of response notifications Response ID."  Eesh. This is becoming more of a headache than it seems it should be.  Perhaps I should stop pursuing this Flow/automation project and go back to just manually copying over the survey responses into OneNote.  Again, all of your support is greatly appreciated but the process of getting help through detailed written-out multi-step directions is not very helpful in the realm of user support for "regular" folks like myself.  😞    Wish this software was more accessible to regular clientele.

Hi @laurakaplan99 ,

 

You can skip the step 2 add add the compose action which I mentioned in step 3. Not sure how we can show this as live. You need skype or teamviewer software to share the screen. 

 

Thanks

 

 



Did I answer your question? Mark my post as a solution!

If you liked my response, please consider giving it a thumbs up


Proud to be a Flownaut!

Learn more from my blog
Power Automate Video Tutorials

Helpful resources

Announcements

Power Platform Connections - Episode 7 | March 30, 2023

Episode Seven of Power Platform Connections sees David Warner and Hugo Bernier talk to Microsoft MVP Dian Taylor, alongside the latest news, product reviews, and community blogs.     Use the hashtag #PowerPlatformConnects on social media for a chance to have your work featured on the show!      Show schedule in this episode:    0:00 Cold Open 00:30 Show Intro 01:02 Dian Taylor Interview 18:03 Blogs & Articles 26:55 Outro & Bloopers    Check out the blogs and articles featured in this week’s episode:    https://francomusso.com/create-a-drag-and-drop-experience-to-upload-case-attachments @crmbizcoach https://www.youtube.com/watch?v=G3522H834Ro​/  @pranavkhuranauk https://github.com/pnp/powerapps-designtoolkit/tree/main/materialdesign%20components @MMe2K​ https://2die4it.com/2023/03/27/populate-a-dynamic-microsoft-word-template-in-power-automate-flow/ @StefanS365 https://d365goddess.com/viva-sales-administrator-settings/ @D365Goddess https://marketplace.visualstudio.com/items?itemName=megel.mme2k-powerapps-helper#Visualize_Dataverse_Environments @MMe2K    Action requested:  Feel free to provide feedback on how we can make our community more inclusive and diverse.    This episode premiered live on our YouTube at 12pm PST on Thursday 30th March 2023.    Video series available at Power Platform Community YouTube channel.    Upcoming events:  Business Applications Launch – April 4th – Free and Virtual! M365 Conference - May 1-5th - Las Vegas Power Apps Developers Summit – May 19-20th - London European Power Platform conference – Jun. 20-22nd - Dublin Microsoft Power Platform Conference – Oct. 3-5th - Las Vegas    Join our Communities:  Power Apps Community Power Automate Community Power Virtual Agents Community Power Pages Community    If you’d like to hear from a specific community member in an upcoming recording and/or have specific questions for the Power Platform Connections team, please let us know. We will do our best to address all your requests or questions.       

Announcing | Super Users - 2023 Season 1

Super Users – 2023 Season 1    We are excited to kick off the Power Users Super User Program for 2023 - Season 1.  The Power Platform Super Users have done an amazing job in keeping the Power Platform communities helpful, accurate and responsive. We would like to send these amazing folks a big THANK YOU for their efforts.      Super User Season 1 | Contributions July 1, 2022 – December 31, 2022  Super User Season 2 | Contributions January 1, 2023 – June 30, 2023    Curious what a Super User is? Super Users are especially active community members who are eager to help others with their community questions. There are 2 Super User seasons in a year, and we monitor the community for new potential Super Users at the end of each season. Super Users are recognized in the community with both a rank name and icon next to their username, and a seasonal badge on their profile.  Power Apps  Power Automate  Power Virtual Agents  Power Pages  Pstork1*  Pstork1*  Pstork1*  OliverRodrigues  BCBuizer  Expiscornovus*  Expiscornovus*  ragavanrajan  AhmedSalih  grantjenkins  renatoromao    Mira_Ghaly*  Mira_Ghaly*      Sundeep_Malik*  Sundeep_Malik*      SudeepGhatakNZ*  SudeepGhatakNZ*      StretchFredrik*  StretchFredrik*      365-Assist*  365-Assist*      cha_cha  ekarim2020      timl  Hardesh15      iAm_ManCat  annajhaveri      SebS  Rhiassuring      LaurensM  abm      TheRobRush  Ankesh_49      WiZey  lbendlin      Nogueira1306  Kaif_Siddique      victorcp  RobElliott      dpoggemann  srduval      SBax  CFernandes      Roverandom  schwibach      Akser  CraigStewart      PowerRanger  MichaelAnnis      subsguts  David_MA      EricRegnier  edgonzales      zmansuri  GeorgiosG      ChrisPiasecki  ryule      AmDev  fchopo      phipps0218  tom_riha      theapurva  takolota     Akash17  momlo     BCLS776  Shuvam-rpa     rampprakash  ScottShearer     Rusk  ChristianAbata     cchannon  Koen5     a33ik  Heartholme     AaronKnox  okeks      Matren   David_MA     Alex_10        Jeff_Thorpe        poweractivate        Ramole        DianaBirkelbach        DavidZoon        AJ_Z        PriyankaGeethik        BrianS        StalinPonnusamy        HamidBee        CNT        Anonymous_Hippo        Anchov        KeithAtherton        alaabitar        Tolu_Victor        KRider        sperry1625        IPC_ahaas      zuurg    rubin_boer   cwebb365   Dorrinda   G1124   Gabibalaban   Manan-Malhotra   jcfDaniel   WarrenBelz   Waegemma   drrickryp   GuidoPreite    If an * is at the end of a user's name this means they are a Multi Super User, in more than one community. Please note this is not the final list, as we are pending a few acceptances.  Once they are received the list will be updated. 

Register now for the Business Applications Launch Event | Tuesday, April 4, 2023

Join us for an in-depth look into the latest updates across Microsoft Dynamics 365 and Microsoft Power Platform that are helping businesses overcome their biggest challenges today.   Find out about new features, capabilities, and best practices for connecting data to deliver exceptional customer experiences, collaborating, and creating using AI-powered capabilities, driving productivity with automation—and building towards future growth with today’s leading technology.   Microsoft leaders and experts will guide you through the full 2023 release wave 1 and how these advancements will help you: Expand visibility, reduce time, and enhance creativity in your departments and teams with unified, AI-powered capabilities.Empower your employees to focus on revenue-generating tasks while automating repetitive tasks.Connect people, data, and processes across your organization with modern collaboration tools.Innovate without limits using the latest in low-code development, including new GPT-powered capabilities.    Click Here to Register Today!    

Check out the new Power Platform Communities Front Door Experience!

We are excited to share the ‘Power Platform Communities Front Door’ experience with you!   Front Door brings together content from all the Power Platform communities into a single place for our community members, customers and low-code, no-code enthusiasts to learn, share and engage with peers, advocates, community program managers and our product team members. There are a host of features and new capabilities now available on Power Platform Communities Front Door to make content more discoverable for all power product community users which includes ForumsUser GroupsEventsCommunity highlightsCommunity by numbersLinks to all communities Users can see top discussions from across all the Power Platform communities and easily navigate to the latest or trending posts for further interaction. Additionally, they can filter to individual products as well.   Users can filter and browse the user group events from all power platform products with feature parity to existing community user group experience and added filtering capabilities.     Users can now explore user groups on the Power Platform Front Door landing page with capability to view all products in Power Platform.      Explore Power Platform Communities Front Door today. Visit Power Platform Community Front door to easily navigate to the different product communities, view a roll up of user groups, events and forums.

Microsoft Power Platform Conference | Registration Open | Oct. 3-5 2023

We are so excited to see you for the Microsoft Power Platform Conference in Las Vegas October 3-5 2023! But first, let's take a look back at some fun moments and the best community in tech from MPPC 2022 in Orlando, Florida.   Featuring guest speakers such as Charles Lamanna, Heather Cook, Julie Strauss, Nirav Shah, Ryan Cunningham, Sangya Singh, Stephen Siciliano, Hugo Bernier and many more.   Register today: https://www.powerplatformconf.com/   

Users online (2,374)