There is a SharePoint list with one of string column holding a JSON format string.
Here are the fields:
ID, Title, JSONText
The JSONText have a JSON value like below:
[{"Project":"Project X","Task":"Task Y","Total":20}]
I understand Power Automate provide "Parse JSON" action to break down JSON into values by providing the JSON schema.
However, how can I get "each sharepoint item", "break down JSONText value to multiple values", then return a table like this:
ID, Title, Project, Task, Total
We have about 1000 items in SharePoint list. So I would like to avoid using "For each" loop unless it is the only approach.
My final action is export above table to a CSV file. Could you please give me some idea? Thank you.