This free Excel macro allows you to apply filter settings to a data set, list, or range of data in Excel. This will not actually filter the data but it will put the filter "arrows" into the header row of the data set. This lets people know that the data set is ready to be filtered and makes it easier to filter the data when needed.
If you already have filter settings applied to a set of data and you run this macro, the settings will be removed and all filters will also be removed.
This is a great macro to use to toggle the filter settings of a data set in Excel.
All of the elements below often appear within autofilter macros.
Range
Field
Criteria
Operator
Sub AutoFilter_Display_Remove()
'This macro only displays the autofilter arrows and does not perform any filtering
Range("A1").AutoFilter
End Sub