ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   AutoFilter removal (https://www.excelbanter.com/excel-programming/330269-autofilter-removal.html)

David

AutoFilter removal
 
Greetings and TIA for your time
In my code, I want to test to see if AutoFilter is there on the activesheet.
If it is ,I need to switch it off, do something, then re apply the AutoFilter.
--
David

John Green

AutoFilter removal
 
ActiveSheet.AutoFilterMode

This returns True or False to indicate the status of AutoFilter

John Green

"David" wrote in message
...
Greetings and TIA for your time
In my code, I want to test to see if AutoFilter is there on the
activesheet.
If it is ,I need to switch it off, do something, then re apply the
AutoFilter.
--
David




MartinShort[_2_]

AutoFilter removal
 

Code:
--------------------
Sub isItOn()
Dim isOn As Boolean
If Worksheets("Sheet1").AutoFilterMode Then
isOn = True
Else
isOn = False
End If
MsgBox "AutoFilterMode is " & isOn
End Sub
--------------------
The above is taken from Microsoft's help files.
Add in
Code:
--------------------
ActiveSheet.EnableAutoFilter = True
--------------------
etc...and you're there.


--
MartinShort

Software Tester
------------------------------------------------------------------------
MartinShort's Profile: http://www.excelforum.com/member.php...o&userid=22034
View this thread: http://www.excelforum.com/showthread...hreadid=374471


David

AutoFilter removal
 
Thanks Martin
--
David


David

AutoFilter removal
 
Thanks John
--
David



All times are GMT +1. The time now is 04:17 PM.

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