how do i delete more than 1 worksheet in a single macro ? i have many sheets to be deleted and i need some more code delete multiple sheets by their names.
here is my part of code which i use to delete 1 worksheet.
here is my part of code which i use to delete 1 worksheet.
Code:
On Error Resume Next
ThisWorkbook.Sheets("MySheet").Delete
On Error Goto 0