Delete a worksheet

To delete a worksheet titled "Data"

Sub DeleteSheet()
Application.DisplayAlerts = False
  'Replace "Data" with your sheet name
Sheets("Data").Delete
Application.DisplayAlerts = True
End Sub

Revision #1
Created 11 April 2022 09:39:09 by Nicholas Goh
Updated 11 April 2022 09:41:38 by Nicholas Goh