Hi,
Since you are looking at Power Automate, a pseudo flow would look like this. You essentially want them to see their answers., If I might also mention, they can save them themselves and review them later in addition to anything you send them.
Ok
1. You need to add the When a Form is Submitted Trigger
2. Now this part is up to you a little, because its about the format. Since the Form is designed by you, you would know what Questions exist. So you could simply create a flow that checks each Value to see if its ull and if its null do NOT output anything.
But format wise, do you care if its a HTML Table format, or do you care if its just a single string, or with carriage returns but not an html Table etc.
Example 1. This shows all the answers just carriage returned. Doesn't care if its answered or not. Its near 100% the same as example 2, except it doesn't show unanswered
I removed my email, but you can see some items have "rows": but not data
Now let's make sure that we see it in another form, that you asked about.
Now if you look at the Get Response details, you can see that it creates a simple JSON that has the ID's that represent the question and the answer. The issue being that you see a GUID (the answer ID), not the string
{
"responder": "Michael@gernaey.com",
"submitDate": "2/19/2025 7:39:39 PM",
"raf78f0e382484a8fa9f1d36096350ea7": "OK",
"r43276c9ec1e04775bcf6d90329fc3e74": "",
"r94402850cc3a418f878b0f01beeedd91": ""
}
Just as a little more details.
I added another question, but in the UI itself, Its in slot 3, but it shows up in slot 4, which means whenever you add more questions, they go on the end of the json (so in order of being added to the form, NOT in the actual order it is ON the Form itself)
{
"responder": "Michael@gernaey.com",
"submitDate": "2/19/2025 7:51:52 PM",
"raf78f0e382484a8fa9f1d36096350ea7": "OK",
"r43276c9ec1e04775bcf6d90329fc3e74": "",
"r94402850cc3a418f878b0f01beeedd91": "",
"r7bcb4181a0d2463a8a45deb121d61378": "dfdf"
}
So, the order of the Questions, in this JSON answers are always based on the order they were added to the Screen which is important.
You are going to need to look at using as Compose method, to do something like use Coalesce function to check if its value is null/blank/"" etc and passing nothing back for that question.,