the column I am looking in is M
I want to find both the letter"N" and blankc
this code works to filter the items bbut changes the backgroud color of all the cells to yellow
I tried to use this but it give object rrquired error
ActiveSheet.Range("M1:M500").AutoFilter Field:=ColumnAwarded, Criteria1:="=N", _
Operator:=xlOr, Criteria2:="="
Code:
ActiveSheet.Range("M1:M500").AutoFilter Field:=ColumnAwarded, Criteria1:="=N", _
Operator:=xlOr, Criteria2:="="
'Range("M6").Select
ActiveSheet.UsedRange.Offset(1, 0).Resize(ActiveSheet.UsedRange.Rows.Count - 1).Rows.Select
With Selection.Interior
.Pattern = xlSolid
.PatternColorIndex = xlAutomatic
.Color = 65535
'.TintAndShade = 0
'.PatternTintAndShade = 0
End With