counting non-empty rows in a column

  • Thread starter Thread starter Fede Querio
  • Start date Start date
F

Fede Querio

I'd like to calculate the number of non-empty cells contained in a specific
column, how can I do it?
Thanks,
Federico
 
I'd like to calculate the number of non-empty cells contained in a specific
column, how can I do it?
Thanks,
Federico


Hi

=COUNTIF(A:A."<>")

This leavs out cells with functions returning nothing, like
IF(condition,value,""), also
 
Back
Top