Difference between revisions of "Manuals/calci/COUNTIF"

From ZCubes Wiki
Jump to navigation Jump to search
Line 24: Line 24:
 
== Examples ==
 
== Examples ==
 
Consider the following table which shows the color of object in first column and respective count in the second column.
 
Consider the following table which shows the color of object in first column and respective count in the second column.
 +
 
COUNTIF() can be used to count the number of cells that match a given criteria within a mentioned range of values.
 
COUNTIF() can be used to count the number of cells that match a given criteria within a mentioned range of values.
 +
  
 
<div id="2SpaceContent" class="zcontent" align="left">
 
<div id="2SpaceContent" class="zcontent" align="left">
Line 54: Line 56:
 
| class="sshl_f" |2
 
| class="sshl_f" |2
 
|}
 
|}
 +
 
<div id="5SpaceContent" class="zcontent" align="left">
 
<div id="5SpaceContent" class="zcontent" align="left">
  
=COUNTIF(A1:A7,"RED")  : Counts the number of cells in the range A1 to A7 that has text "RED", ''returns 2'' as a result.
+
=COUNTIF(A2:A8,"RED")  : Counts the number of cells in the range A2 to A8 that has text "RED", ''returns 2'' as a result.
  
=COUNTIF(B2:B7, ">8")  : Counts the number of cells  in the range B2 to B7 containing number of objects greater than '8', ''returns 3'' as a result.
+
=COUNTIF(B3:B8, ">8")  : Counts the number of cells  in the range B3 to B8 containing number of objects greater than '8', ''returns 3'' as a result.
  
=COUNTIF(A2:A6,A4)  : Counts the number of cells in the range A2 to A6, that has text similar to A4, ''returns 1'' as a result.
+
=COUNTIF(A3:A7,A4)  : Counts the number of cells in the range A3 to A7, that has text similar to A4, ''returns 1'' as a result.
  
=COUNTIF(B1:B5, "<>"&B3)  : Counts the number of cells  in the range B1 to B5 containing number of objects that are not equal to '20', ''returns 4'' as a result.
+
=COUNTIF(B2:B6, "<>"&B4)  : Counts the number of cells  in the range B2 to B6 containing number of objects that are not equal to '20', ''returns 4'' as a result.
  
=COUNTIF(B1:B7,">4") - COUNTIF(B1:B7,">20")  : Returns the difference in number of cells in the range B1 to B7 with number>4 and number>20, ''returns 4'' as a result.
+
=COUNTIF(B2:B8,">4") - COUNTIF(B2:B8,">20")  : Returns the difference in number of cells in the range B2 to B8 with number>4 and number>20, ''returns 4'' as a result.
  
 
</div>
 
</div>

Revision as of 18:41, 5 November 2013

COUNTIF(r, c)

  • Where 'r' is the range of cells.
  • 'c' is the criteria in the form of a number, expression, cell reference, or text.
  • COUNTIF() function calculates the number of cells that satisfy a given criteria.

Description

COUNTIF(r, c)

For example, COUNTIF(A1:A8,"JOHN") returns the number of cells in the range A1 through A8 that match with the text "JOHN".

  • Criteria containing numbers can be expressed as 66, "66","<=66", ">=66", "<>66" etc.
  • Criteria with text values can be expressed in quotes as "Red" etc.
  • Combination of functions can also be used as COUNTIF(A1:A3,"Red")+COUNTIF(A4:A7,"Orange") etc.
  • Special characters such as '*', '?', '~' can be used in the criteria field to match a certain sequence of characters.
  • COUNT() can be used to count the number of cells in the given range except logical values, error values and text.
  • COUNTA() can be used to count the number of non-empty cells that may be numbers, number representation of a text, error or logic values, dates etc.

Examples

Consider the following table which shows the color of object in first column and respective count in the second column.

COUNTIF() can be used to count the number of cells that match a given criteria within a mentioned range of values.


COLOR NUMBER OF OBJECTS
PURPLE 8
RED 6
BLUE 20
GREEN 23
RED 1
ORANGE 10
BROWN 2

=COUNTIF(A2:A8,"RED") : Counts the number of cells in the range A2 to A8 that has text "RED", returns 2 as a result.

=COUNTIF(B3:B8, ">8") : Counts the number of cells in the range B3 to B8 containing number of objects greater than '8', returns 3 as a result.

=COUNTIF(A3:A7,A4) : Counts the number of cells in the range A3 to A7, that has text similar to A4, returns 1 as a result.

=COUNTIF(B2:B6, "<>"&B4) : Counts the number of cells in the range B2 to B6 containing number of objects that are not equal to '20', returns 4 as a result.

=COUNTIF(B2:B8,">4") - COUNTIF(B2:B8,">20") : Returns the difference in number of cells in the range B2 to B8 with number>4 and number>20, returns 4 as a result.