Delete worksheets not specified in an array

GeeWhiz7

Board Regular
Joined
Nov 22, 2021
Messages
214
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
Hi folks,
I have a workbook with >50 worksheets that are "core" ones that never get deleted. On top of that my macros generate many other worksheets (dynamic # and not always same names) temporarily as I work with data. Before saving, I minimize the file size by deleting the temporary sheets. I do this by using something like the first snippet below. You can imagine that by having 50 or so sheets that can't get deleted, the number of IF AND entries is large.

Goal: To implement something much simpler and flexible to allow me to keep sheets that are defined by a list/array and delete the others.

Thanks for your help in advance!

VBA Code:
Sub DeleteSheets()
Dim kount, i As Long

kount = This Workbook.Sheets.Count

For i = 1 to kount
If Sheets(i).Name <> "CoreNames" And Sheets(i).Name <> "Keep" And Sheets(i).Name <> "Keep2" _
Then
Sheets(i).Delete
End If
Next i
End Sub

What I have been working on to simplify is below. I can't quite figure out the syntax to make it work correctly as it will still delete the "core" worksheets because the loop iteration still will find instances where the <> condition is met.

Sub DelSh()


VBA Code:
'Delete all sheets apart from Core ones defined on CoreNames A1+
'***************************************************
Dim CoreNamesSh As Worksheet
Dim CoreNames, CoreName As Variant
Dim kount As Integer
Dim k As Integer
    
Set CoreNamesSh = Worksheets("CoreNames")
'###Gets the list of worksheets to not delete
CoreNames = CoreNamesSh.Range("A1").CurrentRegion.Value

kount = ThisWorkbook.Sheets.Count
    
    For k = 1 To kount
    
        For Each CoreName In CoreNames
            If Sheets(k).Name = CoreName Then
            GoTo SkipCoreName
            
'###Can't figure how to modify this part to not delete core worsheets
'###defined in CoreNames array.  Because I am looping through each CoreName
'###it still has iterations where the sheet name is <> to CoreName

            ElseIf Sheets(k).Name <> CoreName Then
            Sheets(k).Delete
            
            End If

SkipCoreName:
        Next CoreName
    Next k

End Sub
 

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Hi,
create a simple table on worksheet listing all sheets not to delete & read that into an array

updated code
VBA Code:
Sub DeleteSheets()
    Dim ws          As Worksheet
    Dim keepsheets  As Variant
   
    Application.DisplayAlerts = False
    With ThisWorkbook
        keepsheets = .Worksheets("Keep Sheets").Range("A1").CurrentRegion.Value
        For Each ws In .Worksheets
            If IsError(Application.Match(ws.Name, keepsheets, 0)) Then ws.Delete
        Next ws
    End With
     Application.DisplayAlerts = True
End Sub

Solution is dynamic but you MUST remember to keep the table worksheet name on the list.

Book1
A
1Keep Sheets
2Sheet1
3Sheet2
4Sheet3
Keep Sheets


Dave
 
Upvote 0
Solution
Hi,
create a simple table on worksheet listing all sheets not to delete & read that into an array

updated code
VBA Code:
Sub DeleteSheets()
    Dim ws          As Worksheet
    Dim keepsheets  As Variant
  
    Application.DisplayAlerts = False
    With ThisWorkbook
        keepsheets = .Worksheets("Keep Sheets").Range("A1").CurrentRegion.Value
        For Each ws In .Worksheets
            If IsError(Application.Match(ws.Name, keepsheets, 0)) Then ws.Delete
        Next ws
    End With
     Application.DisplayAlerts = True
End Sub

Solution is dynamic but you MUST remember to keep the table worksheet name on the list.

Book1
A
1Keep Sheets
2Sheet1
3Sheet2
4Sheet3
Keep Sheets


Dave
Very nice indeed. I had not even thought of using Match. Thank you Dave!
 
Upvote 0
Very nice indeed. I had not even thought of using Match. Thank you Dave!

I use the Match function often especially in loops when there is a need to evaluate data against a list of values.
Glad solution does what you want & appreciate your feedback.

Dave
 
Upvote 0

Forum statistics

Threads
1,214,422
Messages
6,119,395
Members
448,891
Latest member
tpierce

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