For..Next with discontinuous numbers

teachman

Active Member
Joined
Aug 31, 2011
Messages
321
Hello,

I have a ss with values in rows 7-11, and 14-21 that I would like to loop through. Currently I use the following construction:

Code:
For r = 7 to 11
  statements
Next r

For r = 14 to 21
  statements
Next r
[\code]

What I would like to do, ideally, is combine this into one loop that looks something like:

For r = 7 to 11, 14 to 21  which doesn't work

I've tried even listing the numbers in () like (7, 8, 9, ...) and without the commas.
I've tried the For Each r In (7, 8, 9, ...) but that doesn't work either.

Any ideas would be helpful.

Thanks,

George Teachman
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
How about:

Code:
For r = 7 To 21
    If r <> 12 And r <> 13 Then
        ' statements
    End If
Next r
 
Upvote 0

Forum statistics

Threads
1,213,484
Messages
6,113,923
Members
448,533
Latest member
thietbibeboiwasaco

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top