powerapps – How to enter only values of array into file in power automate


I’m sending three variables into my power automate flow, all arrays. I’m individually putting each one into its own Create CSV table component and their output is similar to this format:

[
{
“AMDTitle”: “AMDrive”,
“MiddayTitle”: “Midday”,
“EveningTitle”: “Evenings”
}
]

Then I add all three Create CSV table outputs to a Sharepoint Create file component to make a csv file. The flow overall is doing what I want but it’s putting even the keys into a row in the file like this:

row 1: AMDTitle MiddayTitle EveningTitle
row 2: AMDrive Midday Evenings

How can I get the array values only (row 2) and not both the key and values in the file?



Source link

Leave a Comment