Pinterest Pixel

How to Delete a Sheet in Excel – The Ultimate Guide!

John Michaloudis
It is important to know the process of deleting a sheet in Excel.
This will help you keep your workbook clean and focused.

Removing unnecessary sheets will also reduce the file size and make it high performing.

In this article, you will learn different methods to delete a sheet in Excel.

Different Techniques to Delete Sheets

Right-Click Technique

Follow the steps below to delete a sheet:

  • Select the sheet that you want to delete.
  • Right-click on the sheet.
  • Select Delete.

delete sheet

Home Tab and Ribbon Commands

  • Go to the Home tab.
  • Under Cell group, select Delete.
  • Select Delete Sheet from the dropdown.

delete sheet

 

Automate with VBA

Delete a Sheet

You can use VBA code to delete a sheet with minimal effort. The code will be:

Sub SheetDelete()
Dim ws As Worksheet
Set ws = ThisWorkbook.Worksheets(“SheetName”)
Application.DisplayAlerts = False
ws.Delete
Application.DisplayAlerts = True
End Sub

delete sheet

Advanced VBA Code

This code can be used to delete multiple sheets together.

Sub DeleteSheets()
Dim arraySheets As Variant
arraySheets = Array(“Sheet1”, “Sheet2”, “Sheet3”) ‘ Update with your sheet names
Application.DisplayAlerts = False
Dim i As Integer
For i = LBound(arraySheets) To UBound(arraySheets)
If Evaluate(“ISREF(‘” & arraySheets(i) & “‘!A1)”) Then
Sheets(arraySheets(i)).Delete
End If
Next i
Application.DisplayAlerts = True
End Sub

delete sheet

 

Tips & Tricks

Use Shortcut Keys

Excel shortcuts can improve your efficiency and save you loads of time.

  • Ctrl + Page Down to go to the next sheet.
  • Ctrl + Page Up to go to the previous sheet.

Quick Access Toolbar

You can add the delete sheet button in the Quick Access Toolbar to be able to use it quickly.

  • Click on the arrow next to QAT.
  • Select More Commands
  • Select Delete Sheet
  • Click Add
  • Click OK.

delete sheet

Now, with this setup, managing sheets will be swifter than ever.

delete sheet

Deleting vs. Hiding Sheets

Before you proceed to delete sheet, it is important to understand the difference between deletion and hiding. Deleting removes the sheet and all its data permanently, whereas hiding a sheet will conceal the sheet and you will not be able to view it.

Remember that hiding will not reduce the file size.

delete sheet

Delete option Grayed Out

You can find a situation where you will see that the Delete option has been grayed out. This can happen if your worksheet is protected.

delete sheet

You can delete the grayed-out sheet by following these steps:

  • Go to the Review Tab
  • Select Unprotect Workbook.
  • Right-click on the sheet
  • Select Delete.

 

FAQs

How to Delete sheet in Excel?

Right click on the sheet and select Delete.

What is the shortcut to delete sheet?

The keyboard shortcut to delete a sheet is Alt + H + D + S. Press these keys in sequence, not simultaneously, to delete the active sheet after confirming the prompt.

How to delete multiple worksheets together?

You can hold the Ctrl key and then click in the sheets you want to delete. Right-click on one of the sheets and select Delete.

What to do if I accidentally delete a sheet?

If you have deleted a sheet by mistake, you can use either one of these methods to restore it:

  • Press Ctrl + Z to restore a deleted worksheet.
  • Go to the File > Info > Version History. Select the latest version and restore it.
If you like this Excel tip, please share it


Founder & Chief Inspirational Officer

at

John Michaloudis is a former accountant and finance analyst at General Electric, a Microsoft MVP since 2020, an Amazon #1 bestselling author of 4 Microsoft Excel books and teacher of Microsoft Excel & Office over at his flagship MyExcelOnline Academy Online Course.

See also  The Ultimate Guide on Yes No Dropdown for Excel

Steps To Follow

Star 30 Days - Full Access Star

One Dollar Trial

$1 Trial for 30 days!

Access for $1

Cancel Anytime

One Dollar Trial
  • Get FULL ACCESS to all our Excel & Office courses, bonuses, and support for just USD $1 today! Enjoy 30 days of learning and expert help.
  • You can CANCEL ANYTIME — no strings attached! Even if it’s on day 29, you won’t be charged again.
  • You'll get to keep all our downloadable Excel E-Books, Workbooks, Templates, and Cheat Sheets - yours to enjoy FOREVER!
  • Practice Workbooks
  • Certificates of Completion
  • 5 Amazing Bonuses
Satisfaction Guaranteed
Accepted paymend methods
Secure checkout

Get Video Training

Advance your Microsoft Excel & Office Skills with the MyExcelOnline Academy!

Dramatically Reduce Repetition, Stress, and Overtime!
Exponentially Increase Your Chances of a Promotion, Pay Raise or New Job!

Learn in as little as 5 minutes a day or on your schedule.

Learn More!

Share to...