Hello,
I want to find the string "Size" in a specific column and then delete that row. I'm having problems with the find function. When the sub is stepped thru I get a Type Mismatch error.
Here is the Find code.
I want to know where in this there is a type mismatch and how to fix it.
Thanks,
George
I want to find the string "Size" in a specific column and then delete that row. I'm having problems with the find function. When the sub is stepped thru I get a Type Mismatch error.
Here is the Find code.
Code:
ActiveSheet.Columns("C:C").Find( _
What:="Size", _
After:=ActiveCell, _
LookIn:=xlValues, _
LookAt:=xlWhole, _
SearchOrder:=xlByRows, _
SearchDirection:=xlNext, _
MatchCase:=True, _
SearchFormat:=False).Activate
Rows(ActiveCell.Row).Delete
I want to know where in this there is a type mismatch and how to fix it.
Thanks,
George