Hi - I am trying to display the results of my CSV Table into a simple Gallery in PowerApps.
- This is the output of my CSV Table
- this is the ideal response that I am trying to use in my PowerApps Gallery but because this CSV Table resides within a loop I am not able to output it directly to the gallery.
subscriptionId,source
65a658b6fe12857c42c65caa,iFreedom
65a658b6fe12857c42c65caa,DataQuery
- I tried to append the output to an array variable then link it to the next action

- the data comes out in this format
{
"statusCode": "200",
"schema": {
"type": "object",
"properties": {
"output": {
"title": "output",
"x-ms-dynamically-added": true,
"type": "string"
}
},
"additionalProperties": {}
},
"body": {
"output": [
"subscriptionId,source\r\n65a658b6fe12857c42c65caa,iFreedom\r\n65a658b6fe12857c42c65caa,DataQuery\r\n"
]
}
}
I would really appreciate any other suggestions! Thanks in advance