Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I would like to filter out blanks in column L on every worksheet except for the one called "Revisions", not sure why this doesn't work: Sub UnFilterAll() Dim WS As Worksheet For Each WS In ThisWorkbook.Worksheets If Worksheet.Name = "Revisions" Then Next WS.Cells.AutoFilter 12 Next End Sub any help is appreciated.. |