Select multipul worksheets in VB

Dan71

New Member
Joined
Jul 31, 2006
Messages
48
I am trying to select sheets 2 to the final sheet. I have counted howmany I have and therefor want to go from 2 to my varible and then delete them.
I have tried to record it but it lists them all with commas. I can do a loop and delete them one at a time but this is not very neat.
Can anyone tell me what the sintax is.
thanks
Dan
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Dan

Perhaps this.
Code:
Application.DisplayAlerts = False
Application.EnableEvents = False
For I=2 To Worksheets.Count
     Worksheets(I).Delete
Next I
Application.DisplayAlerts = True
Application.EnableEvents = True
By the way what do you mean by 'neat'?
 
Upvote 0
Thanks for getting back to me Norrie. I have been out of the office so have not thought about this for a few days.

By neat I ment without using a loop type thing. That is how I have now done it. I thought it might be posible by using a one line command like you would select a rangeusing some varibles.

thanks for your help.
Dan
 
Upvote 0

Forum statistics

Threads
1,215,577
Messages
6,125,640
Members
449,242
Latest member
Mari_mariou

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