Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 30
Default How to know Autofilter is on

I want to know how to know that the Autofilter is on, and how to turn
it off by code.

The data sheet I receive always has the Autofilter on. I want to see a
sheet without Autofilter on, so I can run Autofilter by code myself.

Thanks

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 214
Default How to know Autofilter is on

Hi Who I Am,

With ActiveSheet
If .AutoFilterMode Then .Cells.AutoFilter
End With

MP

"Who I Am" a écrit dans le message de news:
...
I want to know how to know that the Autofilter is on, and how to turn
it off by code.

The data sheet I receive always has the Autofilter on. I want to see a
sheet without Autofilter on, so I can run Autofilter by code myself.

Thanks



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default How to know Autofilter is on

with activesheet
If .AutoFilterMode Then
if .FilterMode then
.ShowAllData
End if
End If
end with

..autofiltermode checks to see if you have those visible arrows applied.
..filtermode checks to see if you're actually filtering any of the columns.

If you want to remove the arrows so you can reapply data|filter|autofilter where
you want it:

activesheet.autofiltermode = false

It removes the arrows. And it won't hurt if there are no arrows applied.

Who I Am wrote:

I want to know how to know that the Autofilter is on, and how to turn
it off by code.

The data sheet I receive always has the Autofilter on. I want to see a
sheet without Autofilter on, so I can run Autofilter by code myself.

Thanks


--

Dave Peterson
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
How to Sort within AutoFilter with Protection on (and AutoFilter . giblon Excel Discussion (Misc queries) 1 February 16th 06 12:23 PM


All times are GMT +1. The time now is 07:58 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"