Dim rng as Range, rng1 as Range
set rng = columns(10).find("ZZZZZCount", After:=Range("J1"), _
Lookat:=xlPart)
if not rng is nothing then
set rng1 = Range(rng,cells(rows.count,"J")).EntireRow
rng1.Delete
end if

Signature
Regards,
Tom Ogilvy
> I need help creating a macro to find "ZZZZZCount" in column J, then select
> the Rows from the cell just found to the end of the sheet (R65000) and
[quoted text clipped - 15 lines]
> 100 ZZZZZCount
> 100 ZZZZZCount
Lost in Alabama - 24 Jan 2006 20:08 GMT
Thank you so much for your speedy response...I'll give it a try.
> Dim rng as Range, rng1 as Range
> set rng = columns(10).find("ZZZZZCount", After:=Range("J1"), _
[quoted text clipped - 23 lines]
> > 100 ZZZZZCount
> > 100 ZZZZZCount