I have a macro to delete Sheets, but i also wan to clear the content in the Menu Sheet when this macro is run, For example I also wan to clear the content of range B20:D25.
![]()
For i = Sheets.Count To 1 Step -1 If Sheets(i).Name = "Menu" Then Else Sheets(i).Delete End If Next i
Bookmarks