Microsoft
Software
Hardware
Network
Question : How to clear an autofilter in VBA
Hi Experts, this should be an easy question, but I can't seem to find an answer. I need a line or two of code that will clear all the autofilters in a given worksheet. I have a sheet for which I refresh data on a regular basis, but if I have any filters set (which I often do) it screws up my refresh. I can toggle the auto filters off then back on - but this seems kind of kludgy.
-Thanks,
Answer : How to clear an autofilter in VBA
If ActiveSheet.FilterMode Then
ActiveSheet.ShowAllData
End If
Random Solutions
PHP redirection
Push not working on iphone with Exchange 2010...
"A policy is in effect on your computer which prevents you from connecting to this printer queue"
3Com Switch Troubleshooting
Create Access Table Automically
changing cursor ( mouse pointer ) on Marker in Google Maps
Unable to connect Entourage 2004 to SBS 2008 Exchange mailbox
Exchange 2010 Send on Behalf for a Distribution Group
Space betwen menu blocks
Where do I need to close/Dispose of my connections, in my code