macro which finds last cell in a column

  • Thread starter Thread starter vikram
  • Start date Start date
Dim LastRow as Long
LastRow = Range("A65536").End(xlUp).Row

or if you just want to select it:

Range("A65536").End(xlUp).Select

Regards

Trevor
 
Back
Top