Hello,
I want to create data table with string data type
Then, i want to add row using C#
e.g. there is an empty table created, the row are added as per IF condition
package name : packageA
any help
Thanks
Hello,
I want to create data table with string data type
Then, i want to add row using C#
e.g. there is an empty table created, the row are added as per IF condition
package name : packageA
any help
Thanks
can you please elaborate as for these tasks you have generate datatable activity and add data row
cheers
I want to create a empty dataTable say TestTable
then i want to add rows as per the IF condition
after that , I want to iterate the data table
use build datatable to create an empty datatable
inside if conditions on the side you want to add rows use add data row activity
then use for each row in datatable to interate over it
cheers
give a try at
new object[]{var1,var2,....varn};
while executing getting this msg
Add Data Row: Object reference not set to an instance of an object.
@nikhil.chandre It means you didn’t configured the output property of the build datatable activity.
You should assign Datatable variable to it.
Cheers