VBA: jumping out of a for loop

Posted by stanigator on Stack Overflow See other posts from Stack Overflow or by stanigator
Published on 2010-05-11T06:11:16Z Indexed on 2010/05/11 6:14 UTC
Read the original article Hit count: 193

Filed under:
|
|

How do I achieve the following?

for n = 1 to something
    if condition then
        go to the next iteration of the for loop
    end if
    ' more code
next n

Thanks in advance!

© Stack Overflow or respective owner

Related posts about vba

Related posts about excel-vba