right now i look for "TSYHLD" and delete that row and all the rows it above until row 6
so TSYHLD will not always be on row 1189...it possible to do a dynamic range so delete the TSYHLD row and all rows until row 6 no matter which row TSYHLD will be on?
Rich (BB code):
Cells.Find(What:="hld", After:=ActiveCell, LookIn:=xlFormulas, LookAt:= _
xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False _
, SearchFormat:=False).Activate
Range("A6:AK1189").Select
Selection.Delete Shift:=xlUp
so TSYHLD will not always be on row 1189...it possible to do a dynamic range so delete the TSYHLD row and all rows until row 6 no matter which row TSYHLD will be on?