Data Table methods

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,

@Lakshya_Garg

Check below for let you know why we use that statement

Link

Hope this will help you

Thanks