Applies to Product - Power Automate
What’s happening?
Customers are experiencing difficulties in generating a unique ID for each submission made through Microsoft Forms using Power Automate (Flows).
Reason:
The underlying cause of this is related to the configuration of the flow in Power Automate, specifically in setting up the actions to generate and store a unique identifier for each form submission.
Resolution:
To generate a unique ID for each Microsoft Forms submission using Power Automate, follow these steps:
- Create a Form: Start by creating your form in Microsoft Forms.
- Set Up a Flow in Power Automate:
- Go to Power Automate and create a new flow.
- Choose the trigger “When a new response is submitted” and select your form.
- Get Response Details:
- Add the action “Get response details” and select your form and the response ID.
- Generate a Unique ID:
- Use the guid() function to generate a unique identifier. This can be done by adding a “Compose” action and setting the input to guid().
- Store the Unique ID:
- Add an action to store the form response and the unique ID in a data source like SharePoint, Excel, or a database. For example, if using SharePoint, add the action “Create item” and include the unique ID in one of the columns.
