I have 2 columns that will either be blank, or display which database a user has access to. The columns are not identical, so there needs to be OR logic in the macro, but I can't get the syntax right. Here's what I have- the toggling works great, just can't get the OR. I would really prefer to get this method working, and not the "Advanced Filter" method.
With ActiveSheet
If .AutoFilterMode = True And .FilterMode = True Then
.AutoFilterMode = False And .FilterMode = False
Else
.AutoFilterMode = True And .FilterMode = True
ActiveSheet.Range("$E$7:$P$1765").AutoFilter Field:=1, Criteria1:="=DatabaseA", _
Operator:=xlOr, Field:=7, Criteria2:="=DatabaseA"
End If
End With
