My flow is meant to create a CSV file in OneDrive with all the files from selected SharePoint sites.
Each file is appended to a string variable (files) in a loop. Outside of the loop I then add this string variable to a Compose action.
I use the outputs of Compose in my Create CSV table action:
json(outputs('Compose_2'))
, then create my CSV file.
When I check the outputs of Compose, I have all the files that were added to the variable in the loop. But the inputs of Create CSV table are limited to just the first run in my loop. So my CSV file just has those listed.
Is this a bug? I can't see why this wouldn't be bringing across everything from the Compose outputs. I have also tried creating the table from the variable but I get the same issue.