Google-sheets – how to get count of rows in the spreadsheet

google sheets

In google spreadsheets, after typing in a list of items through cells A1 to A7, I went off to another cell and typed the following formula

=COUNT(A1:A7)

It reports zero, instead of seven.

I've done exactly what this article does, but still not the correct result.

Best Answer

According to https://support.google.com/docs/answer/3093620 COUNT function only counts numeric values. Try COUNTA and it should do the job (explained here https://support.google.com/docs/answer/3093991)