Repeat x number of times

I need to keep deleting values from a form x number of times, this x number is given by a row in an excel sheet already used in the sequence. How do can I do this?

for each CurrentItem
repeat … I’m lost, help please.

@Marcia_Flores - If you have x # of times in the IntVariable…You can easily use this in the for Each using the below code:

Enumerable.Range(1,IntCount)

Hi @Marcia_Flores

you can try using while loop as well, below link might help you,

Thanks
Latika

@Marcia_Flores
You can use this activity called “Repeat Number of Times” and check the activity screenshot below,


Hope this may help you :slight_smile: