Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Some automation scenarios require users to pass data in tabular form from a cloud flow to a desktop flow. To implement this functionality, replicate the following steps:
Create a new input variable of a datatable datatype. In this example, the input variable is named DataInput.

Inside your cloud flow, initialize a new variable of type array with an array of objects (JSON) representing your datatable. Then, use it as an input value in the Run a flow built with Power Automate for desktop action.

In the following example, you can see the structure of a JSON block:
[ { "Name": "Tania", "Last Name": "Agius", "Email": "taniaagius@contoso.com" }, { "Name": "Ditiro", "Last Name": "Kgosi", "Email": "ditirokgosi@contoso.com" }, { "Name": "Zoltan", "Last Name": "Gal", "Email": "zoltangal@contoso.com" } ]
To find more information regarding passing data from cloud flows to desktop flows, refer to Trigger desktop flows from cloud flows.