Please anyone tell me the meaning of this statement
dt1.Rows(for_each).Item(“Location”)
here: for_each is the variable of for each datatable
Location is a header of excel file
Please anyone tell me the meaning of this statement
dt1.Rows(for_each).Item(“Location”)
here: for_each is the variable of for each datatable
Location is a header of excel file
Hey @Lakshya_Garg
for_each is the what type of variable?
Thanks!
Hi,
This returns the value of the (for_each)th row and “Location” column of the datatable(dt1).
Regards,
Check below for let you know why we use that statement
Hope this will help you
Thanks