tanyaleblanc
Board Regular
- Joined
- Mar 16, 2019
- Messages
- 145
I'm trying to filter, not sure why its not workig, I seem to always have an issue with the does not <>, there's a formula in that cell, but it shouldn't matter I wouldn't think.
'filter not working should pickup everything that's not $-
it's picking up, do not include N/A's but it's including the $- for some reason.
Code:
With ActiveSheet .AutoFilterMode = False
With Range("a2:m2" & lRow)
.AutoFilter
.AutoFilter Field:=2, Criteria1:="<>$- ", Operator:=xlAnd, Criteria2:="<>#N/A"
MsgBox "stop"
'filter not working should pickup everything that's not $-
it's picking up, do not include N/A's but it's including the $- for some reason.