how to count rows

  • Thread starter Thread starter Reen
  • Start date Start date
Whichever column you have significant amounts of data in (i.e.: this column,
if anything is in the row, will always be populated).
=COUNTA(A:A)
 
How do you get a total count of the rows you use in your spreadsheet?

Or you coudl do it with VBA

Sub LastRow ()
Dim LstRow As Long
LstRow = Range("A65536").end(xlup).row
'Substitute in whatever column you are concerned with for A
End Sub
Jay
 

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