type mismatch
Posted by mes on August 16, 2001 8:12 PM
Can somebody tell me why I get a type mismatch error
on the last line? should I format the variables some-
how?
Sub lastRow()
RealLastRow = Cells.Find("*", [A1], , , xlByRows, xlPrevious) _
.Select
firstEntry = "B:63"
lastEntry = Selection.Address
Worksheets("Payroll").Range(Cells(firstEntry), _
Cells(lastEntry)).Select
End Sub