macro which finds last cell in a column

  • Thread starter Thread starter vikram
  • Start date Start date
V

vikram

please help me by telling a macro which finds last cell in a column

thank
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top