Trapping the AutoFilter Event
I don't see how that would work...if the user performs a AutoFilter action,
what would trigger the Sub AutoFil procedure?
"marcus" wrote:
Hi John
Try this from should get you what you want. Need to change the sheet
name and insert your actions.
Take care
Marcus
Sub autofil()
With Worksheets("Sheet1")
If .AutoFilterMode Then
'Your code here
End If
End With
End Sub
.
|