Hello everybody,
i want to get better with Data Manupulation and want to create and output a DataRow variable and a DataColumn variable from a DataTable variable.
Can anyone help me with this?
Hello everybody,
i want to get better with Data Manupulation and want to create and output a DataRow variable and a DataColumn variable from a DataTable variable.
Can anyone help me with this?
Hello @Kytyzow
You can use the following syntax for fetching the “1 Row”
DataTable variable=Dt
DataRow variable=rw
Dt.Row(1)=rw
rw(1)=Value1
rw(2)=Value2
Thanks.
… Dt.Rows(1)=rw …
Thank you
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.