I am trying to create a flow that takes individual forms responses as shown and creates an individually named excel file containing a tranposed version of the responses
| Candidate Number | First Name | Last Name | 1 | 2 | 3 | 4 | 5 |
| 12345 | John | Doe | A | B | A | C | D |
into this format (an excel file called '12345_First Name_Last Name) for subsequent import into SQL DB
| Candidate Number | 12345 |
| First Name | John |
| Last Name | Doe |
| 1 | A |
| 2 | B |
| 3 | A |
| 4 | C |
| 5 | D |
Can anyone help/advise please?