Adding a value or variable to a certain cell in Datatable

Hi all,

I’m stuck adding a certain value or variable to a created Datatable.

In this stage of the process I wanna add a cell under collumn name “SearchOrder”. This cell needs the value of a variable created earlier in the process and is been giving the name strTest. (The name is for testing)

Can someone help me please.

Grtz Nick

You can use Add Data Row activity for this, not Build Data Table.
For properties you can import Array of Strings to the existing DataTable.
Lets say you have only value for SearchOrder, you need to import String Array like :
{SearchOrder, “”,“”,“”,“”}
It is important to add the exact number of columns in String Array otherwise it will trow an exception

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