Hello everyone, simlpe question, for example I’ve got excel file with logins and passwords.
I have a loop for each row, I entry site with my logins and do some action on site, but sometime there are incorrect logins and when it happens, I need to skip this row and move on to the end of the list.
How can I do it?
Instead of skipping the row, you may want to store the result in that very datatable (e.g. invalid). You could then write said result back to the range, and for the next run just check that value in advance.
@alexkrave I would use an ‘If’ statement to check if the login failed. Or use a 'Break" and it would exit the loop.
Seems like this is less known than one would think (second topic today):
7 Likes
True MVP, thx man it works.
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.