Hi!
I'm having trouble with some of my code. This is what I have right now. What I want it to do is find "Customer Direct Change" and delete all rows below it. Note that that isn't the entire contents of the cell, so I have it doing a partial search
Please know I'm only looking to modify this so it can just sit in my existing code. I don't want an entirely new script.
And I know this is only deleting that row, I'm just struggling to get it to do more than this.
Thanks!!
I'm having trouble with some of my code. This is what I have right now. What I want it to do is find "Customer Direct Change" and delete all rows below it. Note that that isn't the entire contents of the cell, so I have it doing a partial search
Code:
Sheets("Rate Sheet Language").Cells.Find(What:="Customer Directed Change", After:=ActiveCell, LookIn:= _
xlFormulas2, LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:= _
xlNext, MatchCase:=False, SearchFormat:=False).Delete
Please know I'm only looking to modify this so it can just sit in my existing code. I don't want an entirely new script.
And I know this is only deleting that row, I'm just struggling to get it to do more than this.
Thanks!!