Hi Guys
I need to find out if the autofilter is On or Not I have tried
Public Sub t()
Sheets("Effort").Select
If AutoFilter.Active Then
MsgBox "On"
Else
MsgBox "Not On"
End If
End Sub
also
Public Sub t()
Sheets("Effort").Select
If AutoFilter = True Then
MsgBox "On"
Else
MsgBox "Not On"
End If
End Sub
No Joy
Any Ideas
I need to find out if the autofilter is On or Not I have tried
Public Sub t()
Sheets("Effort").Select
If AutoFilter.Active Then
MsgBox "On"
Else
MsgBox "Not On"
End If
End Sub
also
Public Sub t()
Sheets("Effort").Select
If AutoFilter = True Then
MsgBox "On"
Else
MsgBox "Not On"
End If
End Sub
No Joy
Any Ideas