ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Remove Autofilter (https://www.excelbanter.com/excel-programming/339212-remove-autofilter.html)

ilyaskazi[_68_]

Remove Autofilter
 

I want to remove Autofilter from all sheets of my workbook. No matte
whatever the ranges the sheet might have.

At present i m trying this...

Code
-------------------
For Each sh In ActiveWorkbook.Worksheets
' Open hidden sheet
If sh.Visible < xlSheetVisible Then
sh.Visible = True
sh.EnableAutoFilter = False
End If
sh.EnableAutoFilter = False
Next s
-------------------

But it does not remove for all... Please help

--
ilyaskaz
-----------------------------------------------------------------------
ilyaskazi's Profile: http://www.excelforum.com/member.php...fo&userid=2396
View this thread: http://www.excelforum.com/showthread.php?threadid=40192


gearoi[_13_]

Remove Autofilter
 

which ones does it not remove from

--
gearo
-----------------------------------------------------------------------
gearoi's Profile: http://www.excelforum.com/member.php...fo&userid=2657
View this thread: http://www.excelforum.com/showthread.php?threadid=40192


Ron de Bruin

Remove Autofilter
 
Hi ilyaskazi

Use AutoFilterMode

Sub test()
Dim curVis As Long
Dim sh As Worksheet
For Each sh In ThisWorkbook.Worksheets
With sh
curVis = .Visible
.Visible = xlSheetVisible
.AutoFilterMode = False
.Visible = curVis
End With
Next sh
End Sub


--
Regards Ron de Bruin
http://www.rondebruin.nl


"ilyaskazi" wrote in message
...

I want to remove Autofilter from all sheets of my workbook. No matter
whatever the ranges the sheet might have.

At present i m trying this...

Code:
--------------------
For Each sh In ActiveWorkbook.Worksheets
' Open hidden sheet
If sh.Visible < xlSheetVisible Then
sh.Visible = True
sh.EnableAutoFilter = False
End If
sh.EnableAutoFilter = False
Next sh
--------------------

But it does not remove for all... Please help.


--
ilyaskazi
------------------------------------------------------------------------
ilyaskazi's Profile: http://www.excelforum.com/member.php...o&userid=23969
View this thread: http://www.excelforum.com/showthread...hreadid=401925




ilyaskazi[_69_]

Remove Autofilter
 

What does these all 3 option means actually??...

1- EnableAutoFilter
2- FilterMode
3- AutoFilterMod

--
ilyaskaz
-----------------------------------------------------------------------
ilyaskazi's Profile: http://www.excelforum.com/member.php...fo&userid=2396
View this thread: http://www.excelforum.com/showthread.php?threadid=40192


Ron de Bruin

Remove Autofilter
 
Hi ilyaskazi

In the VBA editor select EnableAutoFilter or FilterMode or AutoFilterMode in the code
And press F1

You get all the information you need

--
Regards Ron de Bruin
http://www.rondebruin.nl


"ilyaskazi" wrote in message
...

What does these all 3 option means actually??...

1- EnableAutoFilter
2- FilterMode
3- AutoFilterMode


--
ilyaskazi
------------------------------------------------------------------------
ilyaskazi's Profile: http://www.excelforum.com/member.php...o&userid=23969
View this thread: http://www.excelforum.com/showthread...hreadid=401925





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

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