How to Add Data Row Into Empty Datatable Column

Hello,

Anyone can help me to Add Data Row Into Datatable? But in condition the datatable have not a column.

image

Thanks in advanced. Regards,
Brian Henokh

A datatable has to have datacolumns
So just configure the datatable column structure as required / representing your scenario.
Adding datacolumns:
Build datatable wizard:

Adding data tor the datatabel we can do:

  • directly on build datatable wizeard
  • add datarow activity
1 Like

Hi @henokhbrian, Without columns how you can add values? If you really don’t want to keep columns then add data by passing value to column index or keep headers for datatable and once the add data row is done remove the headers.

1 Like