Skip to main content

How to delete all but selected ranges in Excel?

In Excel, we can quickly and directly delete the selected ranges, but have you ever tried to delete other cell contents except the selected ranges? This article, I will introduce some tricks for you to solve this task in Excel quickly and easily.

Delete all but selected ranges with VBA code

Delete all but selected ranges with Select Range Helper of Kutools for Excel

Delete all but selected ranges with Copy Ranges of Kutools for Excel


Delete all but selected ranges with VBA code

There is no direct way for you to delete all of the unselected cell values at once, but, the following VBA code may help you, please do as follows:

1. Please hold the Ctrl key to select the cells that you want to keep.

doc delete all but selected 1

2. Press Alt + F11 keys simultaneously to open the Microsoft Visual Basic for Application window.

3. In the Microsoft Visual Basic for Application window dialog box, click Insert > Module, then copy and paste the below VBA code into the Module window.

VBA code: delete all cell values but the selected ranges

Sub ClearAllExceptSelection()
'updateby Extendoffice
    Dim xRg As Range
    Dim xCell As Range
    Dim xAddress As String
    Dim xUpdate As Boolean
    On Error Resume Next
    xAddress = Application.ActiveWindow.RangeSelection.Address
    Set xRg = Application.InputBox("Please select the ranges want to keep", "Kutools for Excel", xAddress, , , , , 8)
    If xRg Is Nothing Then Exit Sub
    xUpdate = Application.ScreenUpdating
    Application.ScreenUpdating = False
    For Each xCell In ActiveSheet.UsedRange
        If Intersect(xCell, xRg) Is Nothing Then
            xCell.Clear
        End If
    Next
    Application.ScreenUpdating = xUpdate
End Sub

4. Then press F5 key to run this code, and a prompt box is popped out to remind you to select the range of cells that you want to keep, if you have selected the ranges in step1, please click OK, if not, you can select the cells you want in the prompt box, and enter the commas to separate the multiple ranges, then click OK button, see screenshot:

doc delete all but selected 2

5. After clicking OK, all other cell values have been deleted but just leaving the selected ranges, see screenshot:

doc delete all but selected 3


Delete all but selected ranges with Select Range Helper of Kutools for Excel

If you have installed Kutools for Excel, with its Inverse Selection feature of Select Range Helper utility, you can quickly reverse the selection, and then delete the reversed selections at once.

Kutools for Excel : with more than 300 handy Excel add-ins, free to try with no limitation in 30 days. 

After installing Kutools for Excel, please do as follows:( Free Download Kutools for Excel Now! )

1. Select the ranges of cells that you want to keep.

2. Then click Kutools > Select > Select Range Helper, see screenshot:

3. In the Select Range Helper dialog box, check Inverse Selection, see screenshot:

doc delete all but selected 5

4. And then drag the mouse to select the range that you want to reverse the selections. When you release the mouse, the selected cells have been deselected and the unselected cells have been selected at once. See screenshot:

doc delete all but selected 6

5. Then close the dialog box, and press Delete key to delete the selections at once. And only your desired cells have been kept, see screenshot:

doc delete all but selected 7

Free Download Kutools for Excel Now!


Delete all but selected ranges with Select Range Helper of Kutools for Excel

Another utility-Copy Ranges of Kutools for Excel also can help you finish this job, you just need to copy your selected ranges to a new worksheet, and then delete the old worksheet.

After installing Kutools for Excel, please do with the following steps:( Free Download Kutools for Excel Now! )

1. Hold Ctrl key to select the ranges of cells that you want to keep.

2. Then click Kutools > Copy Ranges, see screenshot:

3. And in the Copy Multiple Ranges dialog box, check All option under the Paste special, check Including row height and Including column width if you want to keep the row height and column width that you want, see screenshot:

doc delete all but selected 9

4. Then click Ok button, and another prompt box will pop out to remind you select a cell to put the copied cells, please select a cell in a new worksheet, see screenshot:

doc delete all but selected 10

5. And then click OK, and only your selected ranges have been pasted into the new worksheet, and now you can delete the original worksheet as you need.

Free Download Kutools for Excel Now!


Demo: Delete all but selected ranges with Kutools for Excel

Kutools for Excel: with more than 300 handy Excel add-ins, free to try with no limitation in 30 days. Download and free trial Now!

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions…
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...

Description


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Comments (0)
No ratings yet. Be the first to rate!
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
Rate this post:
0   Characters
Suggested Locations