With the new excel 2007 coming out with its 1 million rows, it is best
not to identify a starting cell range in the search. It is better to use
the following line of code when searching a column for the last cell.
Value = Cells(Rows.Count, "A").End(xlup).Row
Change "A" to whatever column you are using.