For Next Loop on all Worksheets in Workbook Except the First

McMan

New Member
Joined
Aug 10, 2011
Messages
2
I'm trying to figure out how to have a For Next loop run through all worksheets in a workbook besides the first one. Any ideas?

I'd just run the macro starting from the first sheet and have it manipulate all the others after it.

Here's my code for this loop part.

Code:
    For Each ws In Worksheets
        ws.Select
 
 
 
'Some format manipulation code here
 
 
 
Next ws
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
something like
Code:
for each ws in worksheets
  with ws
    if .name <>sheet1.name then
      'no need to "select" sheet to do things to it
      'if you need more help with this, let me look at some of the code you're using
    end if
  end with
next ws
You could use
Code:
.name <>"summary sheet" then
for example, if you know what the sheet will be called.

HTH
 
Upvote 0
Try
' if you want to run code except sheet1

For each ws in ThisWorkBook

If ws.name <> "Sheet1" then

Enter code

End if

Next ws

End sub
 
Upvote 0

Forum statistics

Threads
1,224,524
Messages
6,179,310
Members
452,906
Latest member
phanmemchatdakenhupviral

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