Folks:
Why can't I get any of these codes to work (I'm using Excel 2010)?:
Sub AutoFilOff()
If ActiveProject.AutoFilter = True Then
ActiveProject.AutoFilter = False
End If
End Sub
Or this one?
Sub AutoFltrTgl()
ActiveProject.AutoFilter = Not ActiveProject.AutoFilter
End...