0

I'm using LibreOffice Calc, if that makes a difference.

I'm looking for a command that returns a value after looking over a column and seeing how many cells have content in it.

ie. I have a column,D, of 10 rows - how do I return a value of how many of those rows have a number in it?

pnuts
  • 58,317
  • 11
  • 87
  • 139
  • 1
    You can use COUNTIF to select non-blank cells (see https://www.ablebits.com/office-addins-blog/2014/07/02/excel-countif-examples/#countif-blank). But note that questions about general usage of Excel are more suited to SuperUser (http://superuser.com/) – jam Apr 08 '15 at 11:02
  • for not quite programming questions you can look for http://superuser.com/ – jean Apr 08 '15 at 11:02
  • As Jean points out, this belongs to superuser.com. – Pripyat Apr 08 '15 at 11:03

1 Answers1

0

=COUNT(D1:D10)

An alternative without a function is to set the field immediately to the left of the zoom slider to Count and observe the value there when D1:D10 is selected.

pnuts
  • 58,317
  • 11
  • 87
  • 139