web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Automate / Moving data from an HT...
Power Automate
Answered

Moving data from an HTTP Get request to an Excel sheet

(0) ShareShare
ReportReport
Posted on by 8

Hello,

We are creating a small reimbursement app and we need to be able to move data from a server to an excel sheet that I use as a data source in the reimbursement app. My API GET request already works fine with the HTTP component so I can get the data but I'm not really sure where to go from here as I'm not very well versed with JSON.

{
    "type""object",
    "properties": {
        "statusCode": {
            "type""integer"
        },
        "headers": {
            "type""object",
            "properties": {
                "Transfer-Encoding": {
                    "type""string"
                },
                "Connection": {
                    "type""string"
                },
                "X-Frame-Options": {
                    "type""string"
                },
                "Cache-Control": {
                    "type""string"
                },
                "Date": {
                    "type""string"
                },
                "Set-Cookie": {
                    "type""string"
                },
                "Server": {
                    "type""string"
                },
                "Content-Type": {
                    "type""string"
                },
                "Content-Length": {
                    "type""string"
                }
            }
        },
        "body": {
            "type""object",
            "properties": {
                "success": {
                    "type""boolean"
                },
                "message": {
                    "type""string"
                },
                "result": {
                    "type""array",
                    "items": {
                        "type""object",
                        "properties": {
                            "id": {
                                "type""integer"
                            },
                            "organization_id": {
                                "type""integer"
                            },
                            "parent_id": {
                                "type""integer"
                            },
                            "active": {
                                "type""integer"
                            },
                            "title": {
                                "type""string"
                            },
                            "created_at": {
                                "type""string"
                            },
                            "updated_at": {
                                "type""string"
                            },
                            "deleted_at": {},
                            "budgets": {
                                "type""array",
                                "items": {
                                    "type""object",
                                    "properties": {
                                        "id": {
                                            "type""integer"
                                        },
                                        "organization_id": {
                                            "type""integer"
                                        },
                                        "parent_id": {
                                            "type""integer"
                                        },
                                        "active": {
                                            "type""integer"
                                        },
                                        "title": {
                                            "type""string"
                                        },
                                        "created_at": {
                                            "type""string"
                                        },
                                        "updated_at": {
                                            "type""string"
                                        },
                                        "deleted_at": {}
                                    },
                                    "required": [
                                        "id",
                                        "organization_id",
                                        "parent_id",
                                        "active",
                                        "title",
                                        "created_at",
                                        "updated_at",
                                        "deleted_at"
                                    ]
                                }
                            }
                        },
                        "required": [
                            "id",
                            "organization_id",
                            "parent_id",
                            "active",
                            "title",
                            "created_at",
                            "updated_at",
                            "deleted_at",
                            "budgets"
                        ]
                    }
                }
            }
        }
    }
}

I used a parse json component to get the items I'll need from the data received in the GET request. I just want to be able to select "title" from the "results" data I get from the GET request and have powerapps replace what the excel sheet has with that "title" data. Each GET request will include anywhere between 30 - 100 titles.
Categories:
I have the same question (0)
  • CU22081303-0 Profile Picture
    150 on at

    If I understand correctly, you currently have the HTTP step working correctly, and it returns some output (these 30-100 titles, all within an array). You want to get one field from each item in the array and add that field to an excel sheet.

     

    This is hard for me to test without having the actual output from your HTTP GET, but I used an example JSON that contains an array. It should be comparable. I've included the example JSON I used.

     

    I have a flow with a Compose step that simply contains that JSON, this should imitate your HTTP step. Following the HTTP step, we want a Parse JSON action. I used "Generate from sample", where I pasted in my example JSON payload, and it generated the schema for me (it looks like you already have your schema). Now, Power Automate is aware of how our data is structured and we can use dynamic values in other steps.

     

    After the parse, I wanted to shove the whole array from our JSON into an array variable to make it easier to work with, although this is not necessary, and I didn't actually use it in the end. I initialized a variable, set its type to "array" and for the "value" I used dynamic content and chose "books" since that is the array in my example JSON. I believe your schema would need you to select "budgets".

     

    Now I skip ahead and create a "Add a row into a table" step (Excel Online Connector). I point it to my One Drive, select a library, select an example file, and select a table (I had to literally go into excel and click "insert -> table" to make this work). This part was stubborn, it took me a few tries to get right. I even had to type my table name into Power Automate manually and tell it to use it as a custom value. Once you make it happy with your File and table (or use a different excel connector), you just need to put a value in the input field which is named after your column in excel. I selected "title", which is part of the "books" array. This instantly created an Apply to each step focused on the "books" field, and filled in the "title" field for my value. 

     

    Now, I have a flow that will pretend to get a value from an HTTP step (its just a pre-filled compose), parse the JSON from the previous step, and iterate through the array in the JSON. For every item in the array, it will add a row to our excel sheet which contains the "title" field for that item. I don't know if this is exactly what you need, but I think it will help you move in the right direction. Best of luck!

     

    httpflowexample.png

     

    {
     "books": [
     {
     "title": "Professional JavaScript",
     "authors": [
     "Nicholas C. Zakas"
     ],
     "edition": 3,
     "year": 2011
     },
     {
     "title": "Professional JavaScript",
     "authors": [
     "Nicholas C.Zakas"
     ],
     "edition": 2,
     "year": 2009
     },
     {
     "title": "Professional Ajax",
     "authors": [
     "Nicholas C. Zakas",
     "Jeremy McPeak",
     "Joe Fawcett"
     ],
     "edition": 2,
     "year": 2008
     }
     ]
    }

     

  • Worthingtonnl Profile Picture
    8 on at

    Okay I think we are close but not quite. I tried it without initializing and got an error, "The execution of template action 'Apply_to_each' failed: the result of the evaluation of 'foreach' expression '@body('Parse_JSON')' is of type 'Object'. The result must be a valid array."
    After initializing the flow runs but nothing in my excel sheet changes.

    {
     "success": true,
     "message": "Accounting Classes",
     "result": [
     {
     "id": 118,
     "organization_id": 1,
     "parent_id": 0,
     "active": 1,
     "title": "1 - EV Services",
     "created_at": "2023-01-24 12:33:25",
     "updated_at": "2023-03-02 17:18:47",
     "deleted_at": null,
     "budgets": [
     {
     "id": 140,
     "organization_id": 1,
     "parent_id": 118,
     "active": 1,
     "title": "1 - A&E",
     "created_at": "2023-03-02 17:28:19",
     "updated_at": "2023-03-02 17:28:19",
     "deleted_at": null
     },
     {
     "id": 141,
     "organization_id": 1,
     "parent_id": 118,
     "active": 1,
     "title": "2 - Construction Management",
     "created_at": "2023-03-02 17:28:30",
     "updated_at": "2023-03-02 17:28:30",
     "deleted_at": null
     },
     {
     "id": 142,
     "organization_id": 1,
     "parent_id": 118,
     "active": 1,
     "title": "3 - Inspection",
     "created_at": "2023-03-02 17:28:39",
     "updated_at": "2023-03-02 17:28:39",
     "deleted_at": null
     },
     {
     "id": 143,
     "organization_id": 1,
     "parent_id": 118,
     "active": 1,
     "title": "4 - Operations",
     "created_at": "2023-03-02 17:28:47",
     "updated_at": "2023-03-02 17:28:47",
     "deleted_at": null
     },
     {
     "id": 144,
     "organization_id": 1,
     "parent_id": 118,
     "active": 1,
     "title": "5 - Project Management",
     "created_at": "2023-03-02 17:28:57",
     "updated_at": "2023-03-02 17:28:57",
     "deleted_at": null
     },
     {
     "id": 145,
     "organization_id": 1,
     "parent_id": 118,
     "active": 1,
     "title": "6 - Site Acquisition",
     "created_at": "2023-03-02 17:29:08",
     "updated_at": "2023-03-02 17:29:08",
     "deleted_at": null
     },
     {
     "id": 119,
     "organization_id": 1,
     "parent_id": 118,
     "active": 0,
     "title": "Blink Mobility",
     "created_at": "2023-01-24 12:34:03",
     "updated_at": "2023-03-02 17:21:18",
     "deleted_at": null
     }
     ]
     },
     {
     "id": 121,
     "organization_id": 1,
     "parent_id": 0,
     "active": 1,
     "title": "2 - Fiber Services",
     "created_at": "2023-03-02 17:19:56",
     "updated_at": "2023-03-02 17:19:56",
     "deleted_at": null,
     "budgets": [
     {
     "id": 134,
     "organization_id": 1,
     "parent_id": 121,
     "active": 1,
     "title": "1 - A&E",
     "created_at": "2023-03-02 17:26:45",
     "updated_at": "2023-03-02 17:26:45",
     "deleted_at": null
     },
     {
     "id": 135,
     "organization_id": 1,
     "parent_id": 121,
     "active": 1,
     "title": "2 - Construction Management",
     "created_at": "2023-03-02 17:27:34",
     "updated_at": "2023-03-02 17:27:34",
     "deleted_at": null
     },
     {
     "id": 136,
     "organization_id": 1,
     "parent_id": 121,
     "active": 1,
     "title": "3 - Inspection",
     "created_at": "2023-03-02 17:27:44",
     "updated_at": "2023-03-02 17:27:44",
     "deleted_at": null
     },
     {
     "id": 137,
     "organization_id": 1,
     "parent_id": 121,
     "active": 1,
     "title": "4 - Operations",
     "created_at": "2023-03-02 17:27:51",
     "updated_at": "2023-03-02 17:27:51",
     "deleted_at": null
     },
     {
     "id": 138,
     "organization_id": 1,
     "parent_id": 121,
     "active": 1,
     "title": "5 - Project Management",
     "created_at": "2023-03-02 17:27:59",
     "updated_at": "2023-03-02 17:27:59",
     "deleted_at": null
     },
     {
     "id": 139,
     "organization_id": 1,
     "parent_id": 121,
     "active": 1,
     "title": "6 - Site Acquisition",
     "created_at": "2023-03-02 17:28:09",
     "updated_at": "2023-03-02 17:28:09",
     "deleted_at": null
     }
     ]
     },
     {
     "id": 122,
     "organization_id": 1,
     "parent_id": 0,
     "active": 1,
     "title": "3 - Solar Services",
     "created_at": "2023-03-02 17:20:47",
     "updated_at": "2023-03-02 17:20:47",
     "deleted_at": null,
     "budgets": [
     {
     "id": 128,
     "organization_id": 1,
     "parent_id": 122,
     "active": 1,
     "title": "1 - A&E",
     "created_at": "2023-03-02 17:25:30",
     "updated_at": "2023-03-02 17:25:30",
     "deleted_at": null
     },
     {
     "id": 129,
     "organization_id": 1,
     "parent_id": 122,
     "active": 1,
     "title": "2 - Construction Management",
     "created_at": "2023-03-02 17:25:44",
     "updated_at": "2023-03-02 17:25:44",
     "deleted_at": null
     },
     {
     "id": 130,
     "organization_id": 1,
     "parent_id": 122,
     "active": 1,
     "title": "3 - Inspection",
     "created_at": "2023-03-02 17:26:02",
     "updated_at": "2023-03-02 17:26:02",
     "deleted_at": null
     },
     {
     "id": 131,
     "organization_id": 1,
     "parent_id": 122,
     "active": 1,
     "title": "4 - Operations",
     "created_at": "2023-03-02 17:26:11",
     "updated_at": "2023-03-02 17:26:11",
     "deleted_at": null
     },
     {
     "id": 132,
     "organization_id": 1,
     "parent_id": 122,
     "active": 1,
     "title": "5 - Project Management",
     "created_at": "2023-03-02 17:26:23",
     "updated_at": "2023-03-02 17:26:23",
     "deleted_at": null
     },
     {
     "id": 133,
     "organization_id": 1,
     "parent_id": 122,
     "active": 1,
     "title": "6 - Site Acquisition",
     "created_at": "2023-03-02 17:26:35",
     "updated_at": "2023-03-02 17:26:35",
     "deleted_at": null
     }
     ]
     },
     {
     "id": 123,
     "organization_id": 1,
     "parent_id": 0,
     "active": 1,
     "title": "4 - Wireless Services",
     "created_at": "2023-03-02 17:21:00",
     "updated_at": "2023-03-02 17:22:14",
     "deleted_at": null,
     "budgets": [
     {
     "id": 124,
     "organization_id": 1,
     "parent_id": 123,
     "active": 1,
     "title": "1 - A&E",
     "created_at": "2023-03-02 17:23:52",
     "updated_at": "2023-03-02 17:23:52",
     "deleted_at": null
     },
     {
     "id": 8,
     "organization_id": 1,
     "parent_id": 123,
     "active": 1,
     "title": "2 - Construction Management",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2023-03-02 17:23:13",
     "deleted_at": null,
     "budgets": [
     {
     "id": 11,
     "organization_id": 1,
     "parent_id": 8,
     "active": 0,
     "title": "TMO AL/EP",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2023-03-02 17:22:16",
     "deleted_at": null
     },
     {
     "id": 12,
     "organization_id": 1,
     "parent_id": 8,
     "active": 0,
     "title": "TMO Arizona",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2023-03-02 17:22:17",
     "deleted_at": null
     },
     {
     "id": 13,
     "organization_id": 1,
     "parent_id": 8,
     "active": 0,
     "title": "TMO Dallas",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2023-03-02 17:22:18",
     "deleted_at": null
     },
     {
     "id": 14,
     "organization_id": 1,
     "parent_id": 8,
     "active": 0,
     "title": "TMO Hawaii",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2023-03-02 17:22:19",
     "deleted_at": null
     },
     {
     "id": 15,
     "organization_id": 1,
     "parent_id": 8,
     "active": 0,
     "title": "TMO SD",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2023-03-02 17:22:21",
     "deleted_at": null
     },
     {
     "id": 113,
     "organization_id": 1,
     "parent_id": 8,
     "active": 0,
     "title": "TMO SF",
     "created_at": "2022-06-08 08:56:00",
     "updated_at": "2023-03-02 17:22:22",
     "deleted_at": null
     },
     {
     "id": 16,
     "organization_id": 1,
     "parent_id": 8,
     "active": 0,
     "title": "TMO SLC",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2023-03-02 17:22:24",
     "deleted_at": null
     },
     {
     "id": 17,
     "organization_id": 1,
     "parent_id": 8,
     "active": 0,
     "title": "TMO Tri-LA",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2023-03-02 17:22:25",
     "deleted_at": null
     },
     {
     "id": 120,
     "organization_id": 1,
     "parent_id": 8,
     "active": 0,
     "title": "West Region DAS",
     "created_at": "2023-01-24 13:30:39",
     "updated_at": "2023-03-02 17:22:27",
     "deleted_at": null
     }
     ]
     },
     {
     "id": 29,
     "organization_id": 1,
     "parent_id": 123,
     "active": 1,
     "title": "3 - Inspection",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2023-03-02 17:23:26",
     "deleted_at": null,
     "budgets": [
     {
     "id": 30,
     "organization_id": 1,
     "parent_id": 29,
     "active": 0,
     "title": "Crown Castle",
     "created_at": "2021-11-30 10:49:02",
     "updated_at": "2022-07-26 13:43:22",
     "deleted_at": null
     }
     ]
     },
     {
     "id": 125,
     "organization_id": 1,
     "parent_id": 123,
     "active": 1,
     "title": "4 - Operations",
     "created_at": "2023-03-02 17:24:09",
     "updated_at": "2023-03-02 17:24:09",
     "deleted_at": null
     },
     {
     "id": 126,
     "organization_id": 1,
     "parent_id": 123,
     "active": 1,
     "title": "5 - Project Management",
     "created_at": "2023-03-02 17:24:22",
     "updated_at": "2023-03-02 17:24:22",
     "deleted_at": null
     },
     {
     "id": 19,
     "organization_id": 1,
     "parent_id": 123,
     "active": 1,
     "title": "6 - Site Acquisition",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2023-03-02 17:23:36",
     "deleted_at": null,
     "budgets": [
     {
     "id": 112,
     "organization_id": 1,
     "parent_id": 19,
     "active": 0,
     "title": "American Tower - East (Florida)",
     "created_at": "2022-03-10 13:05:39",
     "updated_at": "2023-03-02 17:22:34",
     "deleted_at": null
     },
     {
     "id": 117,
     "organization_id": 1,
     "parent_id": 19,
     "active": 0,
     "title": "American Tower - West",
     "created_at": "2022-10-26 11:31:46",
     "updated_at": "2023-03-02 17:22:37",
     "deleted_at": null
     },
     {
     "id": 114,
     "organization_id": 1,
     "parent_id": 19,
     "active": 0,
     "title": "Crown Castle - NorCal",
     "created_at": "2022-06-08 08:56:41",
     "updated_at": "2023-03-02 17:22:40",
     "deleted_at": null
     },
     {
     "id": 20,
     "organization_id": 1,
     "parent_id": 19,
     "active": 0,
     "title": "Crown Castle - South Florida",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2023-03-02 17:22:42",
     "deleted_at": null
     },
     {
     "id": 116,
     "organization_id": 1,
     "parent_id": 19,
     "active": 0,
     "title": "TMO SFL/Miami",
     "created_at": "2022-08-11 12:45:14",
     "updated_at": "2023-03-02 17:22:44",
     "deleted_at": null
     },
     {
     "id": 25,
     "organization_id": 1,
     "parent_id": 19,
     "active": 0,
     "title": "TMO Tampa",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2023-03-02 17:22:46",
     "deleted_at": null
     }
     ]
     }
     ]
     },
     {
     "id": 3,
     "organization_id": 1,
     "parent_id": 0,
     "active": 1,
     "title": "5 - Administrative",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2023-03-02 17:21:11",
     "deleted_at": null,
     "budgets": [
     {
     "id": 127,
     "organization_id": 1,
     "parent_id": 3,
     "active": 1,
     "title": "1 - INTERCO",
     "created_at": "2023-03-02 17:24:44",
     "updated_at": "2023-03-02 17:24:44",
     "deleted_at": null
     },
     {
     "id": 6,
     "organization_id": 1,
     "parent_id": 3,
     "active": 1,
     "title": "2 - TruBase Development",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2023-03-02 17:25:03",
     "deleted_at": null
     },
     {
     "id": 146,
     "organization_id": 1,
     "parent_id": 3,
     "active": 1,
     "title": "3 - TruBase - R&D",
     "created_at": "2023-05-15 15:34:08",
     "updated_at": "2023-05-16 08:58:22",
     "deleted_at": null
     },
     {
     "id": 7,
     "organization_id": 1,
     "parent_id": 3,
     "active": 0,
     "title": "3 - Western Trust",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2023-05-12 09:47:20",
     "deleted_at": null
     }
     ]
     },
     {
     "id": 33,
     "organization_id": 1,
     "parent_id": 0,
     "active": 0,
     "title": "Deactivated",
     "created_at": "2021-12-22 15:41:20",
     "updated_at": "2021-12-22 15:41:20",
     "deleted_at": null,
     "budgets": [
     {
     "id": 21,
     "organization_id": 1,
     "parent_id": 33,
     "active": 1,
     "title": "Eco DenSol",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2022-06-09 13:08:02",
     "deleted_at": null
     },
     {
     "id": 9,
     "organization_id": 1,
     "parent_id": 33,
     "active": 1,
     "title": "Eco Towers",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2022-06-09 13:06:46",
     "deleted_at": null
     },
     {
     "id": 4,
     "organization_id": 1,
     "parent_id": 33,
     "active": 1,
     "title": "Market Math",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2022-06-09 15:00:08",
     "deleted_at": null
     },
     {
     "id": 22,
     "organization_id": 1,
     "parent_id": 33,
     "active": 1,
     "title": "MH",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2022-06-09 13:08:16",
     "deleted_at": null
     },
     {
     "id": 32,
     "organization_id": 1,
     "parent_id": 33,
     "active": 1,
     "title": "Other",
     "created_at": "2021-11-30 20:57:39",
     "updated_at": "2022-06-10 10:05:44",
     "deleted_at": null
     },
     {
     "id": 23,
     "organization_id": 1,
     "parent_id": 33,
     "active": 1,
     "title": "RKC",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2022-06-09 13:08:25",
     "deleted_at": null
     },
     {
     "id": 24,
     "organization_id": 1,
     "parent_id": 33,
     "active": 1,
     "title": "Sprint-Florida",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2022-06-09 13:08:59",
     "deleted_at": null
     },
     {
     "id": 5,
     "organization_id": 1,
     "parent_id": 33,
     "active": 1,
     "title": "Studeo Development",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2022-06-09 15:00:18",
     "deleted_at": null
     },
     {
     "id": 10,
     "organization_id": 1,
     "parent_id": 33,
     "active": 1,
     "title": "Tillman",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2022-06-09 13:07:07",
     "deleted_at": null
     },
     {
     "id": 115,
     "organization_id": 1,
     "parent_id": 33,
     "active": 0,
     "title": "TMO SF",
     "created_at": "2022-07-07 08:48:23",
     "updated_at": "2022-07-26 13:46:33",
     "deleted_at": null
     },
     {
     "id": 18,
     "organization_id": 1,
     "parent_id": 33,
     "active": 1,
     "title": "Vanguard Towers",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2022-06-09 13:07:19",
     "deleted_at": null
     },
     {
     "id": 26,
     "organization_id": 1,
     "parent_id": 33,
     "active": 1,
     "title": "Verizon",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2022-06-09 13:08:41",
     "deleted_at": null
     },
     {
     "id": 27,
     "organization_id": 1,
     "parent_id": 33,
     "active": 1,
     "title": "Vertical Bridge",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2022-06-09 13:09:12",
     "deleted_at": null
     },
     {
     "id": 28,
     "organization_id": 1,
     "parent_id": 33,
     "active": 1,
     "title": "Vinculums",
     "created_at": "2021-11-30 10:49:01",
     "updated_at": "2022-06-09 13:09:27",
     "deleted_at": null
     },
     {
     "id": 31,
     "organization_id": 1,
     "parent_id": 33,
     "active": 1,
     "title": "Wheel Model",
     "created_at": "2021-11-30 10:49:02",
     "updated_at": "2022-06-09 14:25:12",
     "deleted_at": null
     }
     ]
     }
     ]
    }

    These are the outputs i'm working with I want specifically the "title" value from the "results" array. (so 1 - EV Services, 2 - Fiber Services", ... so on so forth) Which my parse json shows as the output value so the parse json is getting that content.
    httptoparse.JPGinitvariabletoaddrow.JPG

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

    Just not sure why it isn't putting anything into the excel sheet.

  • Verified answer
    CU22081303-0 Profile Picture
    150 on at

    Hi, thank you for providing the JSON, this is very helpful for troubleshooting.

     

    I modified my example flow to more closely match yours. We have that array variable called Accounting Class, it should contain the following array after being parsed:

    TrekW_0-1685626279150.png

    All 6 of these items in the array also contain their own array of objects called "budget" but I collapsed them to make this more readable.

     

    This array looks good, we just need to iterate over all of the items and grab the string called "title".

     

    Your first Apply To Each loop looks good, it is iterating over all of our items we just discussed which are stored in Accounting Class variable. The second loop seems redundant; with the loops nested like that, it means that we are looping through the entire list 6 times for every item in the list (6x6=36 times).

     

    Try moving your excel action out of the second loop, into the first one and deleting the second loop.

    Then change the variable in the excel action to:

    items('Apply_to_each')?['title']

    TrekW_5-1685627249017.png

    This is saying "for the current item we are looking at in the loop called "Apply_to_each", get the field called "title".

     

    When I run the flow, I get the results I think we want:

    TrekW_1-1685626751387.png

     

     

    I hope this helps! If you are still having problems, we may want to ensure you have the parse JSON step setup correctly for the payload you are giving it. I just pasted what you gave me here into the "generate from sample" tool it provides and that worked out nicely for me.

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Power Automate

#1
Michael E. Gernaey Profile Picture

Michael E. Gernaey 503 Super User 2025 Season 2

#2
Tomac Profile Picture

Tomac 321 Moderator

#3
abm abm Profile Picture

abm abm 237 Most Valuable Professional

Last 30 days Overall leaderboard