Hi,
I have a csv file , in which every third row or say fourth row has a URL value (like google.com) so the new loop should run from the row where first column has the URL value .
Also , is it possible to loop through three rows and particular set of columns for performing the same action , say , add a vehicle repeatedly with same number of data but different values
Though I’m still having problem in understanding how to use something like for loop, like looping through some 7 columns and 3 rows performing the same function
I want to iterate through COL4 to COL7 from row1 to row3 in same execution cycle performing the same function , of say , adding a property in an application
This is possible but more tricky. By default, each call of csvRead increases the row count by one. So within in your loop you will have 3 csvRead, one for each row. After each csvRead you need to store the !COLx values in variables, so the next csvRead does not overwrite them.
Note that (if needed) you can set the row that csvRead loads manually with the ${!csvReadLineNumber} variable.