Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 190
Default 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

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 709
Default 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



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
excel 2007 autofilter change to 2003 autofilter functionality? jonnybrovo815 Excel Discussion (Misc queries) 1 April 19th 10 10:05 PM
2007 excel autofilter back to 2003 autofilter? jonnybrovo815 Excel Discussion (Misc queries) 3 April 19th 10 08:11 PM
2007 excel autofilter change back to 2003 autofilter? jonnybrovo815 Excel Discussion (Misc queries) 1 April 19th 10 05:53 PM
2007 Autofilter worse than 2003 Autofilter jsky Excel Discussion (Misc queries) 9 October 31st 07 12:14 AM
Determine Value of Autofilter Evan Excel Discussion (Misc queries) 1 June 1st 05 01:02 PM


All times are GMT +1. The time now is 03:16 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"