Reputation: 21764
Is it possible to clear all filters from an Excel-table, do something else inbetween, and then reapply the filters with the same criteria as before?
Upvotes: 0
Views: 1768
Reputation: 521
use like below
Activesheet.EnableAutoFilter = True
or for Particular range
Activesheet.Range("A6:R6").AutoFilter = True
Upvotes: 1