Is there a way to continue to loop given the value of a macro? Loop is limited by count or file contents but not a conditional statement.
Perhaps using the General tab to execute the step according to an expression.
Then loop on a count so it doesn't run off forever.
The resulting logic roughly would be:
if(expression == TRUE && count < maxNumberOfLoops)
do the loop
endif
Thoughts?
|