The code is like:
'first for loop
for I = 1 to 5
do sth
'second for loop
for j = 2 to 7
do sth
'third for loop
for m = 2 to 43
if [condition] then
exit 2nd and 3rd loop and continue on next I ?????
end if
next
next
next
I wrote two Exit For
, but it did not help. It only exited the 3rd for loop and continue on next j.