Bob, I believe what you gave me would find the last filled row in column A.
How do I use that to select a range from say K6 to last filled row. Would it
be Range(Cells(11,6),Cells(cLastRow)).select. TIA
Greg
cLastRow = Cells(Rows.Count,"A").End(xlUp).Row
--
HTH
RP
(remove nothere from the email address if mailing direct)