Computer >> Computer tutorials >  >> Software >> Office

Quick Guide: Remove Advanced Filters in Excel with 5 Simple Methods

The dataset represents a duty roster. Advanced Filters were applied. To know if a dataset is Advanced filtered, look at the row index numbers. If they are blue, it means they are filtered.

Quick Guide: Remove Advanced Filters in Excel with 5 Simple Methods

Method 1 – Applying the Clear Feature to Remove the Advanced Filter

Steps:

  • Select B4:H13.
  • Go to the Data tab and click Clear in Sort & Filter.

Quick Guide: Remove Advanced Filters in Excel with 5 Simple Methods

The filter is removed: the row index numbers are black.

Hidden rows are visible in the dataset.

Quick Guide: Remove Advanced Filters in Excel with 5 Simple Methods

Method 2 – Use a Keyboard Shortcut to Delete Advance Filters in Excel

Steps:

  • Open the active sheet and press  Alt + D + F + A .
  • In the Advanced Filter dialog box, select the range you want to filter in List range.
  • Uncheck Unique records only.
  • Close the dialog box by clicking OK.

Quick Guide: Remove Advanced Filters in Excel with 5 Simple Methods

Hidden rows are displayed.

The advanced filters were removed.

Quick Guide: Remove Advanced Filters in Excel with 5 Simple Methods

Method 3 – Manually Unhide Rows to remove the Advanced Filter from Specific Rows

Steps:

  • Right-click the gap between rows 8 and 10.

Quick Guide: Remove Advanced Filters in Excel with 5 Simple Methods

  • In the context menu, click Unhide.

Quick Guide: Remove Advanced Filters in Excel with 5 Simple Methods

Hidden cells are visible.

The Advanced filter was removed.

Quick Guide: Remove Advanced Filters in Excel with 5 Simple Methods

Method 5 – Using the Filter Tool to remove the Advanced Filter in Excel

Steps:

  • Go to the Data tab and click Filter in Sort & Filter.

Quick Guide: Remove Advanced Filters in Excel with 5 Simple Methods

  • You can also press  Ctrl + Shift + L  to access the Filter feature.

Quick Guide: Remove Advanced Filters in Excel with 5 Simple Methods

Hidden cells are visible after removing the advanced filters.

Quick Guide: Remove Advanced Filters in Excel with 5 Simple Methods

Method 5 – Running a VBA Code to Remove the Advanced Filter in Excel

Steps:

  • Go to the Developer tab and click Visual Basic.

Quick Guide: Remove Advanced Filters in Excel with 5 Simple Methods

  • In the Visual Basic window, click Insert and choose Module to create a module.

Quick Guide: Remove Advanced Filters in Excel with 5 Simple Methods

  • Enter the following VBA code:
Sub Remove_Adv_Filter()
If ActiveSheet.FilterMode = True Then
ActiveSheet.ShowAllData
End If
End Sub
 
  • Click Run.
  • Save the code in an Excel Macro-Enabled Workbook and close the window.

Quick Guide: Remove Advanced Filters in Excel with 5 Simple Methods

Hidden cells are visible.

The macro removes the advanced filters.

Quick Guide: Remove Advanced Filters in Excel with 5 Simple Methods

Download Practice Workbook

Download the practice workbook.

<< Go Back to Advanced Filter | Filter in Excel | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!