How am I supposed to repeat sequence exactly, for instance, 6 times?
I have the sequence which I need to repeat several times.
@bp777
Use a For Each activity and use Enumerable.Range(1,6)
as the Values parameter.
You can use a flow decision using a condition to decide when it is over…