Issue Details
I have a For Loop nested in a While Loop (or a similar nested loop combination) that performs an operation, such as acquiring data or calculating a value, in the outer loop and a different operation in the inner loop.
When I run the VI, the code executes, but the operation in the outer loop executes only after the inner loop finishes all its iterations. How can I make both loops execute simultaneously? Is it expected behavior that the outer loop waits for the inner loop to complete?