Hi,
I'm not exactly a newbie to VBA or Visual Basic; however, I am having difficulty with making a part of a function delete all of the existing worksheets in a workbook despite their names.
General techniques that I have tried:
In the example above, I've replaced sh with other variables and I've also tried "In Worksheets" in place of "ThisWorkbook.Sheets"![]()
Application.DisplayAlerts = False For Each sh In ThisWorkbook.Sheets sh.Delete Next Application.DisplayAlerts = True
When I try this, I get "Run-time error '1004': Delete method of Worksheet class failed"
The code I used to create the sheet inside the workbook is:
(I tried changing "sh" to "sht" too - fyi)![]()
Dim sht As Worksheet Set sht = Worksheets.Add
The function itself is quite lengthy so I left out the rest of the code... let me know if you need anything further to assist.
Thanks,
Dalcron
Bookmarks