Hi @sajarac ,
Could you please share more details about the formula you typed within the Items property of the Data Table?
Do you want to collect the data from the Data Table into a collection?
Based on the formula you provided, I think there is something wrong with it. If you want to collect all records from the Data Table into a collection, I afraid that there is no way to achieve your needs. Currently, there is no way to collect all records from a Data Table in PowerApps, instead, you could only select single one record once time from the Data Table.
As an alternative solution, if you want to collect all records from the Data Table, please take a try with the following formula:
ClearCollect(SendtoFlow2, "Type the formula you specified within the Items property of the Data Table here")
For the second argument of the ClearCollect formula, please type the formula you used for the Items property of the Data Table.
On your side, you should type the following formula within the OnSelect property of the "Submit" button:
ClearCollect(SendtoFlow2, "Type the formula you specified within the Items property of the Data Table here");
FlowName.Run(JSON(SendtoFlow2))
Note: Currently, the flow only accept string parameter passed from an app, you could not pass a JSON Table data from an app to a flow directly. So you need to convert the JSON table value into a JSON String firstly, then pass the converted JSON string into your flow.
Within your flow, you could use the json() WDL expression to convert the passed JSON String into a JSON table, then you could do some operations on the JSON Table in your flow (e.g. apply a "Apply to each" action to the converted JSON Table).
Please consider take a try with above solution, then check if the issue is solved.
Best regards,