I need to clear the contents of any cell in column K
that contains a double quote ("
) in the text string. The text strings will differ some will say 3" hose
, some will say 10" road
so it won't be the same and it is only within that column that I need the contents of the cell cleared (not deleted, I don't want the remaining data to move).
Here is what I have tried:
Sub Macro4()
Rows("3:3").Select
Selection.AutoFilter
Range("K2").Select
ActiveSheet.Range("$A$3:$V$3225").AutoFilter Field:=11, Criteria1:="=*""*" _
, Operator:=xlAnd
Range("K45").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.ClearContents
Rows("3:3").Select
Range("E3").Activate
Selection.AutoFilter
Range("A4").Select
End Sub