Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() application.showall -- Don Guillett SalesAid Software "Who I Am" wrote in message oups.com... 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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
excel 2007 autofilter change to 2003 autofilter functionality? | Excel Discussion (Misc queries) | |||
2007 excel autofilter back to 2003 autofilter? | Excel Discussion (Misc queries) | |||
2007 excel autofilter change back to 2003 autofilter? | Excel Discussion (Misc queries) | |||
2007 Autofilter worse than 2003 Autofilter | Excel Discussion (Misc queries) | |||
How to Sort within AutoFilter with Protection on (and AutoFilter . | Excel Discussion (Misc queries) |