I have a several data tables, and a I want to save them in one data set, how can i do that?

I have 3 data tables and i want to save them in one data set, but i have no idea of how i can do this

Hi @Jamerson_Gabriel_Renosto1 ,

Could you maybe try using the Invoke Method activity in the below way :

TargetObject : DS.Tables
MethodName : AddRange
Parameters : Type - Array of Datatables - {DT1,DT2}
Here, DS is a variable of type DataSet and it is initialised before using Invoke Method activity.

The DT1 and DT2 are the datatable variables to be added to the dataset.

1 Like

Thank you, it solved my problem and it’s working like i expected!

1 Like

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