Clear, practical technology insights BSOD Code Lookup · Windows Error Code Lookup · Wi-Fi Troubleshooting · PC Troubleshooting Checklist

How to Quickly Delete Multiple Sheets in Excel

Learn how to quickly delete multiple sheets in Excel with clear steps, practical tips, and troubleshooting advice for a smoother, more reliable result.

Table of Contents

This practical guide walks through how to quickly delete multiple sheets in Excel, explains the main requirements, and highlights common issues that may appear along the way.

1. How to delete multiple Excel sheets by Ctrl

To delete a sheet in Excel , just right-click on the sheet you want to delete and select Delete .

1. How to delete multiple Excel sheets by Ctrl — How to Quickly Delete Multiple Sheets in Excel

To delete multiple sheets at the same time , we press and hold the Ctrl key, then click the sheets you want to delete, right-click and choose Delete .

1. How to delete multiple Excel sheets by Ctrl — How to Quickly Delete Multiple Sheets in Excel

Alternatively, you can also right-click a sheet and select Select All Sheets to select all the sheets .

1. How to delete multiple Excel sheets by Ctrl — How to Quickly Delete Multiple Sheets in Excel

Hold down the Ctrl key and click on the sheets you don't want to delete , and then press Delete to delete the rest.

1. How to delete multiple Excel sheets by Ctrl — How to Quickly Delete Multiple Sheets in Excel

Instructions for deleting multiple Excel sheets with Macros code

Besides the traditional delete Excel sheet above, we can also use Macros to delete multiple sheets at once.

Step 1:

You do not want to separate the sheet names you want to delete from other sheets. Then press Alt + F11 to launch Microsoft Visual Basic for Applications. Then click Insert> Module .

Instructions for deleting multiple Excel sheets with Macros code — How to Quickly Delete Multiple Sheets in Excel

Step 2:

Next you enter the code below into the interface.

Public Sub Test() Application.DisplayAlerts = False Dim Ws As Worksheet For Each Ws In Worksheets If Ws.Name <> "Test" Then Ws.Delete Next Ws Application.DisplayAlerts = True End Sub

Here Test is the sheet you want to keep in the Excel table.

Instructions for deleting multiple Excel sheets with Macros code — How to Quickly Delete Multiple Sheets in Excel

Step 3:

Continue to click Run to run the code in Excel.

Instructions for deleting multiple Excel sheets with Macros code — How to Quickly Delete Multiple Sheets in Excel

Resulting all sheets in the data file have been deleted, except for the Test sheet that we entered in the code.

Instructions for deleting multiple Excel sheets with Macros code — How to Quickly Delete Multiple Sheets in Excel

Key Takeaways

Use the information above as a practical reference for how to quickly delete multiple sheets in Excel. Review each step carefully, confirm any requirements, and choose the option that best fits your situation.

FAQ

What does this guide explain about Quickly Delete Multiple Sheets in Excel?

It explains the main concepts, practical considerations, and useful steps related to quickly delete multiple sheets in Excel without requiring advanced knowledge.

Who can benefit from learning about Quickly Delete Multiple Sheets in Excel?

This information is useful for readers who want a clear overview, practical guidance, and reliable steps related to quickly delete multiple sheets in Excel.

What should I check before applying this information?

Review the requirements, confirm that your device, software, or situation matches the instructions, and back up important data before making major changes.

Discussion

Reader Comments 0

Sign in with email or Google to join the discussion.