Keep count of rows in Excel

  • Thread starter Thread starter Lucas
  • Start date Start date
L

Lucas

I am trying to print row count on my output regardless of
the size of the worksheet or the number of rows. Any
ideas?
 
Experiment with this; it may offer a solution. You can go
into the print setup and have it print the value of this
cell in the header or footer or whatever.

=COUNTA(A5:A8) Counts the number of nonblank cells in the
last 4 rows of the list (4)
 
Back
Top