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

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
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,132
Messages
6,123,227
Members
449,091
Latest member
jeremy_bp001

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