How can you identify a column in a datatable in uipath?
Answers
Answered by
5
Yes buddy, as you mention without being for each row or for each loop,you can even get with assign activity, the exact value of cell of a datarow in a datatable…like thisassign activity(for datatable named out_dt), for first row and 11th columnout_value = out_dt.Rows(0)(10).ToStringthe reason for 0 and 10 instead of 1 and 11 is the rows and columns are usually taken with 0 index.or if you know the name of the column, well and good you can mention as string likeout_value = out_dt.Rows(0)(“column_name”).ToString..
Answered by
0
Answer:
Hii Mate your answer is given below
Attachments:
Similar questions