Hi
Well.. yes and no kinda.
You can definitely grab the JSON from the Get Response Details. You will notice that all the questions are there.
The issue is, there is NO question "text" its just the values, in order of the form.
So you could grab the Form, get the Text Values for the questions and then use that Index to check if the thing has an answer.
The question I have is, do you write to the Target and put the question text AND the answers or just the answers??
If its just the answers, then sure you can do what you want and just write them in ORDER and it will match logically the order of the questions.
What I did once was.
1. Create a SharePoint list (environment variables wont work here I dont think due to size) to store configuration data.
2. Put a Comma Separated list of Question Text
3. in your Flow use the Split to turn that into an Array
4. Get your Response Details
5. use the Index of the Response Data, to grab the right Column Text or whatever you want
6. Now save them.
it's not always easy so :-( thats as best as I can get you.