How to undo autofilters without removing?

  • Thread starter Thread starter G Lykos
  • Start date Start date
G

G Lykos

Greetings! Would like to undo all autofilter selections (would be
equivalent of selecting All in each one) in the active workbook without
removing the autofilters. Is there a VBA function or procedural sequence to
accomplish this?

Thanks,
George
 
Hi George,

Try:

'=============>>
Public Sub Tester()
ActiveSheet.ShowAllData
End Sub
'<<=============
 
Back
Top