Hi all -
I am trying to turn autofilter on for every sheet in the workbook except "Homepage"
I thought this code would do it
Code
For Each ws In wbDest.Sheets
If ws.Name <> "Homepage" Then
ws.AutoFilterMode = True And ws.FilterMode = True
End If
Next
No error messages are received.
But when I open the file the filter arrows are not visible
Can you please tell me what I'm doing wrong?
Thanks
-marc