I want to increment rows and check if there is match on website extarct with my excel data or no but somehow website extract rows are coming in some different sequence numbers .
EX:
Default start is 2 on web extract.
If no 2 on Web Row : then Selector row is = 5
Extra row = 6
If no 3 on Web Row : then Selector row is = 8
Extra row = 9
IF no 4 on Web Row: then Selector row is = 11
Extra row = 12
If no 5 on Web Row : then Selector row is = 14
Extra row = 15
If no 6 on Web Row : then Selector row is = 17
Extra row = 18
I am taking 2 as default value and incrementing 1 row in for each loop. But need to increment that integer value also each of the time.
Would you be able to provide me some example file ?
Extra row means I am getting one extra row on my extract data table after each of the row that I have to look for the values if match or not .
So, that extra row has also row number.
Number 2 is giving = 2
Add Description is giving = 3 (this is extra row where I don’t want to look anything for match)
Number 3 checkbox is giving = 5
vice versa
Thanks
@Yoichi yes, now working. Can you provide me some example how should I apply this code in my flow?
I mean how can I iterate through each extracted row or how can i use this in my selector ? I am matching few things in each row so I have more conditions inside loop and I have made dynamic variable for each row.
I have given default row value = 2 , as each first row starting with 2 in the selector.
Ok, Now I got it correct row numbers . But one more question here ,
I have rows like below and I am iterating through each row so how can i use this if row number 17 is match ?
My bot will start to check rows 5,6, 8,9 ,11,12,14,15,17,18 vice versa.
Do I have to increment row numbers after each row checking condition ? or what ?