Hello,
I have a data table. 3 row 5 columns.
How do I get the value in the 3rd column?
Hello,
I have a data table. 3 row 5 columns.
How do I get the value in the 3rd column?
Hi!
Follow the below steps.
CurrentRow("Column name").ToString.Trim
Or
CurrentRow("ColumnIndex").ToString.Trim
Nite: Column index will start from Zero(0)
This will display the particular column values.
Take one message box and pass the Col3 variable here
You can see the values (Each iteration time one value)
Try this and let me know
Regards,
NaNi
we can acces directly like:
YourDataTableVar.Rows(RowIndex)(ColumnIndex).toString
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.