Is there a way to jump to a higher level in the program tree?
For example, I have a set up like this:
if count = 1
do this
if count >1, if count < total
do this
if count = total
do this
but I want to create something like this:
if count = 1
if cycle = true
count = 2
**do this**
(do this)
if count >1, if count < total
do this
if count = total
do this
and after the ** do this ** I want it to ignore the (do this) and jump up a level in the program to re-evaluate the value of “count” and move to the middle section. Maybe I’m over -thinking it and there is an easier way to do this but in testing, it never ignores the “(do this)” portion of the program.
I hope my question makes sense and thank you so much in advance.