I am creating a structured data table (from reading a table on a website) that can have anywhere from 10 to 20 rows in it. I have to change a status on some of the rows but as soon as I do change the status that particular row disappears so I have one less row now that what the bot counted in the beginning .
Does anyone know how to deal with this when the bot still thinks I have X amount rows but in fact I have one less now? This causes confusion with the bot and it then skips the next row. So instead of going to the second row it goes to the third
so you dont really do anything if the scrapped data, it will just make you process slower… you can use loop activities and check only the info you need for your decision and not the whole thing…
I actually found a solution - I just needed to put the increment in the ‘else’ of the if statement that way it would only increment if it needed to. Thanks