basic loop won't work: what am I missing ?

JohnExcel222

New Member
Joined
Dec 19, 2018
Messages
35
Office Version
  1. 365
basic loop won't work: what am I missing ?

Sub xx1()
Dim ws As Worksheet

For Each ws In ThisWorkbook.Worksheets

If ws <> Worksheets(1) Then
ws.Delete
End If
Next ws
End Sub
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Try this:
Rich (BB code):
Sub xx1()

    Dim ws As Worksheet

    Application.DisplayAlerts = False
    
    For Each ws In ThisWorkbook.Worksheets
        If ws.Name <> Worksheets(1).Name Then ws.Delete
    Next ws
    
    Application.DisplayAlerts = True
    
End Sub
 
Upvote 0
Solution
How about this...

VBA Code:
Sub xx1()
    Dim ws As Worksheet

    For Each ws In ThisWorkbook.Worksheets
    If ws.Index <> 1 Then
        ws.Delete
    End If
    Next ws
End Sub
 
Upvote 0
Glad they work. We were both happy to help.
 
Upvote 0

Forum statistics

Threads
1,215,816
Messages
6,127,038
Members
449,356
Latest member
tstapleton67

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