I have managed to extract from a larger array the following:
[
{
"Question": "Question1",
"Answer": [
"Answer1"
]
},
{
"Question": "Question2",
"Answer": [
"Answer2"
]
},
{
"Question": "Question3",
"Answer": [
"Question4"
]
},
{
"Question": "Feedback:",
"Answer": null
},
{
"Question": "Question4",
"Answer": [
"Answer4"
]
},
{
"Question": "Feedback:",
"Answer": null
}
]
I am somewhat struggling with now extracting the Answer, which is still in its own array.
The end objective is to create a document\pdf or excel table with the Question and Answers?
I can never seem to achieve getting an array to a point where I can use each value?
Please could someone assist me.
thanks