go to last record

  • Thread starter Thread starter keyt
  • Start date Start date
K

keyt

What command will select the last record in a list?

Is there a way to include that command within a range?

ie: Range ("A1:(last record)").Select

Or better yet Range("A1:[last record]").AdvancedFilter...
 
Let me know if this will work...

Range("A1:" & ActiveSheet.Cells.SpecialCells
(xlCellTypeLastCell).Address).Select
 

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

Similar Threads

criteriarange not equal to 4
Applying Variables to SORT 4
VBA set thick borders around non empty cells in range 0
Filtering multiple sheets 5
End(xlDown) 5
Conflict 8
"Run-time error '1004' 5
A1:B(xlDown)? 4

Back
Top