Difference between revisions of "Manuals/calci/SUMIF"

From ZCubes Wiki
Jump to navigation Jump to search
Line 76: Line 76:
 
  =SUMIF(B2:B6,">10") : Adds up the quantity of fruits that are greater than '10'. Returns '''50''' as a result.
 
  =SUMIF(B2:B6,">10") : Adds up the quantity of fruits that are greater than '10'. Returns '''50''' as a result.
 
  =SUMIF(A2:A6,"=Pear",C2:C6) : checks for the Pear fruit in the list and adds the price. Returns '''20''' as a result.
 
  =SUMIF(A2:A6,"=Pear",C2:C6) : checks for the Pear fruit in the list and adds the price. Returns '''20''' as a result.
 +
 +
==Related Videos==
 +
{{#ev:youtube|FlVuD39001g|280|center|SUMIF}}
  
 
==See Also==
 
==See Also==

Revision as of 12:50, 16 April 2015

SUMIF(CriRange, Criteria, SumRange)

where

  • is the range of cells that is evaluated by the specified criteria,
  • is a condition to evaluate in the form of a number, expression or text, and
  • is the actual range of cells to be added.

SUMIF() calculates the sum of values in the given range if the specified criteria is satisfied.

Description

SUMIF(CriRange, Criteria, SumRange)

For Example,

SUMIF([10,20,30],">15", [50,60,70]) returns 130

In above example, Calci checks for the values > 15 in first array (20 and 30) and returns the sum of corresponding values in second array (60 and 70) and displays 130 as a result.

  • Blank values in are ignored.
  • can be in the form of a number, expression, a cell reference, function or text. Expression, function or text criteria should be written in double quotation marks (e.g. ">30" or "A2+A3<100" or "Banana").
  • Argument is an optional. It specifies the range of cells to add if the mentioned condition is satisfied.
  • If is omitted, Calci adds the values in the same range for which criteria is applied.
  • and can be of different sizes. The actual cell to be added are determined by using upper leftmost cell in as the beginning cell, till the cells corresponding in size and shape to .
  • If is not satisfied, Calci displays zero (0) as a result.

Examples

Fruit Quantity Price
Orange 20 $10
Apple 10 $15
Banana 15 $5
Mango 10 $15
Pear 15 $20
=SUMIF(B2:B6,"10",C2:C6) : Checks for the fruits with Quantity equal to '10' and adds the corresponding prices. 
Returns 30 as a result. =SUMIF(B2:B6,">10") : Adds up the quantity of fruits that are greater than '10'. Returns 50 as a result. =SUMIF(A2:A6,"=Pear",C2:C6) : checks for the Pear fruit in the list and adds the price. Returns 20 as a result.

Related Videos

SUMIF

See Also

References