Hello ,
I have table where i need to go for each row , but table design is like this:
Headers: at A1 , B1 , C1 …
and than information in : A2,B2,C2,D2,E2 and in F2,F3,F4… and after that next row start from A5
A5,B5,C5,D5,E5 and again F5,F6 … so the first fields are constant i did them with for each row and condition if empty or null continue and it’s working good it’s taking the information but for the last field which is F for each row it’s starting from beginning and it’s not starting from where i used the break activity. I have used Break activity if text is equal to End , and for the first row is good have correct information , but for the second for each it’s getting again information from F2,F3,F4 instead of F5,F6 after last time it breaks when it see End.
Can i make it to continue like first case with each row.
So to take A5,B5,C5,D5,E5 which is doing it , but it’s taking again F2 , F3 , … instead of starting again from F5 , F6 and so on.