Hello together,
I am currently working on a PowerAPP that requries Parsing of JSON-Arrays. This is way harder than I thought. Maybe I do something wrong and you could give me a pointer in the right direction.
Lets talk about the Situation:
I have a SharePoint List with only one Column. That Columns contains the JSON-Array which is needed to be parsed. The important point is now that I need to read back the JSON-String into an Table. Because I want to display the results in a gallery.
| Title |
Result |
| Currently not used but later for Filtering |
JSON-Array |
Each Line contains one JSON-Array with the same structure but individual Data:
{
"Data": [
{
"Choices": "YES;NO;MAYBE",
"ColumnType": "Form 1",
"Data": "YES",
"FormName": "Form 1",
"QuestionNR": 1,
"Requried": "Yes",
"Title": "Would you recommend this Pizza?"
},
{
"Choices": "YES;NO;MAYBE",
"ColumnType": "Choices",
"Data": "MAYBE",
"FormName": "Form 1",
"QuestionNR": 3,
"Requried": "Yes",
"Title": "Would you recommend this Pizza?"
}
]
}
Now the Idea is to read back the Information into a Collection / Table to display the Data in a Gallery. Each Entry in the Sharepoint-List where the JSON-Array is stored should be one Entry in the Gallery.
Summary:
- Reading JSON String
- Parsing JSON
- Create Table based on Parsed JSON
Would be great if you can support me here. I tried several ways but for me its not possible to get the Data back.