ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   determine if autofilter is on (https://www.excelbanter.com/excel-programming/376159-determine-if-autofilter.html)

geebee

determine if autofilter is on
 
hi,

I would like to know the code to determine whether or not the autofilter is
enabled, and if it is, to turn it off. If it is not turned on, it should
remain off.

Thanks in advance,
geebee


Paul B

determine if autofilter is on
 
geebee, this should do what you want

Sub filtertest()
With ActiveSheet
.AutoFilterMode = False
End With

End Sub

But if you do want to test it.......
Sub filtertest2()
With ActiveSheet
If .AutoFilterMode Then
MsgBox "Autfilter is on"
Else
MsgBox "Auto Filter Is Off"
End If
End With
End Sub


--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003

"geebee" (noSPAMs) wrote in message
...
hi,

I would like to know the code to determine whether or not the autofilter

is
enabled, and if it is, to turn it off. If it is not turned on, it should
remain off.

Thanks in advance,
geebee





All times are GMT +1. The time now is 05:23 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com