SUMIFS function - Zoho Sheet - Help Guide

SUMIFS

Returns the sum of the given numbers based on specified conditions.

 

Syntax

 

SUMIFS(sum_range; test_range; condition; [test_range1]; [condition1];...)

sum_range: The range containing the values to add. Eg., B2:B8

test_range: The ranges you want to test for the given criteria.

condition: The condition may be:

A number, such as 15

An expression, such as 2/3 or SQRT(A1)

A text string, such as "zoho"

Other than testing for similar values in test_range for the given condition, the SUMIFS function also allows the use of >, <, >=, <=, =, and <> in the condition.

 

Remarks

  • If you don't remember the complete text you have to search for, use  .* .?  and  instead.

            .* - Can be used to replace any number of characters. For example.,  Zyl.*  finds  Zylker
            .? - Can be used to replace a single character. For example,  Karthi.?  finds  Karthik  and  Karthic

            / - Can be used to include *, ? and / in the search term. For example, Zylker/* finds Zylker* and Karthi.?/? finds Karthik? and Karthic

Examples  

   

Formula

Result

=SUMIFS(B2:B8;A2:A8;"Portable Wardrobes";B2:B8;">300")

353

=SUMIFS(D2:D8;C2:C8;"115";A2:A8;"Flower Vase")

$32,660


Get a hands-on experience of the function in the embedded range below. 



Possible Errors

 

Errors

Meaning

#N/A!

  • The function could not find the value it was asked to look for. Commonly occurs in VLOOKUP and similar functions.

#NAME!

  • The function name is incorrect or invalid.

  • The given defined name (if any) is invalid.

  • There is a typo in the defined name used in the function.

  • Double quotes are missing for text values in the function.

  • Colon missing in a cell range reference.

#VALUE!

  • The given argument's data type is incorrect or invalid.
    For example, the function =DATE(A1:A3) will return a #VALUE error when a text value is present in the range.

#REF!

  • The given cell reference is incorrect or invalid. This error may occur when a cell/range has been deleted, moved, or pasted over.

 

Similar Functions