Hi everyone
Hopefully this is just a quick one.
I currently have this code searching for "--------" and deleting the entire row once it has found it.
Columns("A:A").Find(What:="--------", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
Selection.EntireRow.Delete
I would like to loop this so that it finds all instances of "--------" and deletes each row that it is found on then stops once all "--------" have been found and deleted.
If anyone can point me in the right direction, it would be greatly appreciated.
Thanks
Bookmarks