So in my organization we do a lot of appointments with Microsoft bookings, I'm making a power automate to collect all the information in one report that is easier to keep track on, the issue that I have is that we have some custom questions at the time of booking that we need to keep track of, this is what my power automate looks like now
So far i realized that if I use the compose connector I can turn the answers into the following string
[{"Answer":"12345","Question":"Código de Escuela","QuestionID":"7c7410b9-1e5f-4597-b3e9-fb47f1100bcf"},{"Answer":"Arecibo","AnswerOptions":["Arecibo","Bayamón","Caguas","Humacao","Mayagüez","Ponce","San Juan"],"Question":"Región Educativa","QuestionID":"558863af-2237-4206-8b77-4773a8537c84","SelectedOptions":[0]},{"Answer":"54321","Question":"TAL","QuestionID":"115bfd8a-2c99-42ab-846b-b5135d9e488d"}]
I need to extract from this the answers "12345" from "codigo de escuela", "Arecibo" from Answer options and "54321" from TAL
also, I need to be able to put this resulting answers into different columns within the excel sheet.
Is this possible?