Thread
:
group filtering
View Single Post
#
2
Posted to microsoft.public.excel.programming
Ben McClave
external usenet poster
Posts: 173
group filtering
Assuming you have data in columns A:J, this should work:
Sub FilterAll()
Dim WS As Worksheet
For Each WS In ThisWorkbook.Worksheets
WS.Cells.AutoFilter 11, "<"
Next
End Sub
-Ben
Reply With Quote
Ben McClave
View Public Profile
Find all posts by Ben McClave