Thread
:
Use macro to delete worksheet without specific name Eg:Sheet 1
View Single Post
#
3
Posted to microsoft.public.excel.programming
Gary''s Student
external usenet poster
Posts: 11,058
Use macro to delete worksheet without specific name Eg:Sheet 1
Sub JustKillMe()
Application.DisplayAlerts = False
ActiveSheet.Delete
Application.DisplayAlerts = True
End Sub
--
Gary''s Student - gsnu200814
Reply With Quote
Gary''s Student
View Public Profile
Find all posts by Gary''s Student