1 Like
FOR EACH ROW activity accepts only DATATABEL as input. I see you are passing ARRAY OF DATAROW.
To iterate through ARRAY OF DATAROW, you can use FOR EACH activity and change TARGET TYPE as DATAROW
In the above example clubMembers should be a DataTable not Array of DATAROW.
one thing you can do is in you example, use
members.CopyAsDatatable
in your for each row activity which will convert Array or DataRow to Datatable
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.

