Hi @Anonymous,
Could you please share a screenshot of your flow's configuration?
Could you please show a bit more about your SharePoint list?
Further, do you create your form within Microsoft Forms?
I suppose that you created your form within Microsft Forms, is it true? I have created a SharePoint list on my side and the data structure of it as below:
Note: The Response Id column is a Single line of text type column, which is used to store the response id of the submitted form. The Responder Email column is a Single line of text type column, which is used to store the responders' email address. The Approval Result is a Single line of text type column, which is used to store the approval result.
I have made a test on my side and please take a try with the following workaround:
- Add a "When a new response is submitted" trigger.
- Add a "Apply to each", input parameter set to output of the trigger.
- Within "Apply to each", add a "Get response details" action, specify Form Id, Response Id field set to Response Id dynamic content of the trigger.
Add a "Select" action, From set to output of the trigger, Within Map entry, enter three elements. The key of first element set to TaskName and the corresponding value set to TaskName dynamic content of "Get response details" action. The key of second element set to Executor and the corresponding value set to Executor dynamic content of "Get response details" action. The key of third element set to Due Date and the corresponding value set to Due Date dynamic content of "Get response details" action.
Add a "Create CSV table", From set to output of "Select" action.
Add a "Send email with options" action of Outlook connector, User Options set to following formula:
Approve, Reject
Attachments Name field set to Response.csv and Attachments Content set to output of "Create CSV table" action.
Add a "Create item" action, Response Id field set to Response Id dynamic content of the trigger and Approval Result field set to SelectedOption dynamic content of "Send email with options" action.
Note: I don't add a "Start an approval" action within my flow, because the result of the submitted form could not be converted as a table using the "Start an approval" action. In addition, I could not find the "Send approval email" action within the Office 365 Outlook connector, it seems to be removed. On my side, I add the "Send email with options" action within my flow as an alternative way and add the result of the form as a attachment file of the approval email.
Image reference:

When the approval receives the approval email, the screenshot as below:
The flow works successfully as below:
If you want to retrive the result of the form for each results displayed in your SharePoint list, please take a try with the following workaround:
- Add a proper trigger, here I use Flow Button trigger.
- Add a "Get items" action, specify Site Address and List Name.
- Add a "Apply to each", input parameter set to output of "Get items" action.
- Within "Apply to each" action, add a "Get response details" action, specify Form Id, Response Id field set to following formula:
items('Apply_to_each')?['Response_x0020_Id']
Image reference:
The flow works successfully as below:
Best regards,
Kris