Excel – Count rows in Microsoft Excel column

microsoft excelworksheet-function

I have a table that looks like this:

Column A

Dog     
Apple   

And some more words. But on the side of the table, I want to have a cell which tells me how many rows I have in Column A, and I want it to update as I add more rows. How could I do this using equations or functions?

Best Answer

=COUNTA(A:A)-1 will return the number of non-blank cells in Column A.

Related Question