Re-use a List after try catch

Hi all,
i have a sequence which gets info from a web page and stores in a list. This sequence sometimes failed due to internet connection. I order to get this to work i simply put it in a try-catch inside a retry activity. The only problem is that once it fails and i retry the sequence sadly i lose all the date i’ve stored inside my list.

I could probably store data inside an excel workbook and the read it each time i perform a retry activity but i’m wondering if i can assign my list to another one, use the new one as a stored data and the re-assign the new list to the old one so i don’t lose my data.

Any ideas how to do so?

Many thanks

Hello,

Initialise your list (with an empty list) before your retry.

1 Like