Returns the sum of the given numbers based on specified conditions.
Syntax
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"
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
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 |
Possible Errors
|
Errors |
Meaning |
|
#N/A! |
|
|
#NAME! |
|
|
#VALUE! |
|
|
#REF! |
|
Similar Functions