In Uxer Table how can i delete a row when running an automation

Let say i have a table of 30 rows. When i run the automation i want it to get info from the first row and delete the row when task is finish and stop the bot. How can i do this please

Hi @Troyster ,

In such case, I prefer to have a status column and use it in if condition rather then deleting the row.

Fow example:

For {row} in {myDataSource}
    If ({row["Status"]} = "To Do" )
        OpenBrowser Chrome {row["Profile Link"]}
        {row["Status"]} = "Done"

I will check how to delete a row a bit later but the above solution is better in many cases. Hope that works for you

1 Like

I will give that a try. Thanks you so much for your suggestion.

1 Like