hi Team,
I have Datatable let us say it as dtA, in that there is a column name as “Age”. I have value a 32 and without using a For Each and Add row is there any way to push that data directly into that Table.
Tried
dtA(“Age”) = “32” ->Getting the error as “There is no row at position 0.”
dtA.Rows(0)(“Age”) = “32” -->Getting the error as “There is no row at position 0.”
It will be very helpful if anybody can provide the solution for my Problem.
Thanks in Advance