ExtractionResult, DataSet and DataTables

Hello,

I have problems with the extraction results and the formating. After exporting the extractionResults as a DataSet I’m trying to iterate through it.
As far as I know I can use dataSet.Tables to get a DataTableCollection.


But I can’t iterate through it. My band-aid fix is to use dataSet.Tables(0), dataSet.Tables(1) but with this solution I can’t construct a for each loop.

change the typeargument from the for each activity from object to DataTable

1 Like

Omg, thank you. What a stupid mistake. It workes :slight_smile:

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.