Manuals/calci/COUNTA

From ZCubes Wiki
Revision as of 17:08, 3 November 2013 by Swapna (talk | contribs)
Jump to navigation Jump to search

COUNTA (v1, v2...)

  • Where v1, v2….   are arguments.
  • COUNTA() returns the count of non-empty cells, and values within the list of arguments.
  • Empty cells and text values in the array or reference are ignored.

Description

COUNTA(v1,v2....)

Consider columns A1 to A8 contain 3 numbers. Then, the function COUNTA(A1:A8) returns 3 as a result. COUNTA((A1:A8),"SUN",13) returns 5 as a result.

  • Arguments can be numbers, dates, text representation of a numbers, logical values, or error values or empty text("").
  • Empty cells and text values are not counted.
  • COUNT() can be used to count the number of cells of all type of values excluding logical values, text and error values.

Examples

For better understanding of COUNTA() function, consider the below table that contains different types of data in various columns.

Column1 Column2 Column3 Column4
Row1 Sales 6
Row2 10/10/2009 7
Row3 0
Row4 20
Row5 21.52 0
Row6 TRUE
Row7 #DIV/0!

=COUNTA (A2:A7) : Counts the number of cells that contain numbers in the cells A2 to A7, returns 6 as a result.

=COUNTA (B4:B7, 2) : Counts the number of cells that contain numbers in the cells B4 to B7 and number '2', returns 1 as a result.


See Also

References