SUMIF(range, criteria, [sum_range])
The SUMIF function syntax has the following arguments:
range Required. The range of cells that you want evaluated by criteria. Cells in each range must be numbers or names, arrays, or references that contain numbers. Blank and text values are ignored. The selected range may contain dates in standard Excel format (examples below).
Criteria Required. The criteria in the form of a number, expression, a cell reference, text, or a function that defines which cells will be added. Wildcard characters can be included – a question mark (?) to match any single character, an asterisk (*) to match any sequence of characters. If you want to find an actual question mark or asterisk, type a tilde (~) preceding the character.
For example, criteria can be expressed as 32, “>32”, B5, “3?”, “apple*”, “*~?”, or TODAY().
sum_range Optional. The actual cells to add, if you want to add cells other than those specified in the range argument. If the sum range argument is omitted, Excel adds the cells that are specified in the range argument (the same cells to which the criteria is applied).
Sum_range should be the same size and shape as range. If it isn’t, performance may suffer, and the formula will sum a range of cells that starts with the first cell in sum_range but has the same dimensions as range. For example:
range | sum_range | Actual summed cells |
A1:A5 | B1:B5 | B1:B5 |
A1:A5 | B1:K5 | B1:B5 |
Example
Copy the example data in the following table, and paste it in cell A1 of a new Excel worksheet. For formulas to show results, select them, press F2, and then press Enter. If you need to, you can adjust the column widths to see all the data.
Copy the example data in the following table, and paste it in cell A1 of a new Excel worksheet. For formulas to show results, select them, press F2, and then press Enter. If you need to, you can adjust the column widths to see all the data.
Category | Food | Sales |
Vegetables | Tomatoes | $2,300 |
Vegetables | Celery | $5,500 |
Fruits | Oranges | $800 |
Butter | $400 | |
Vegetables | Carrots | $4,200 |
Fruits | Apples | $1,200 |
Formula | Description | Result |
=SUMIF(A2:A7,”Fruits”,C2:C7) | Sum of the sales of all foods in the “Fruits” category. | $2,000 |
=SUMIF(A2:A7,”Vegetables”,C2:C7) | Sum of the sales of all foods in the “Vegetables” category. | $12,000 |
=SUMIF(B2:B7,”*es”,C2:C7) | Sum of the sales of all foods that end in “es” (Tomatoes, Oranges, and Apples). | $4,300 |
=SUMIF(A2:A7,””,C2:C7) | Sum of the sales of all foods that do not have a category specified. | $400 |
One thought on “Perform logical operations by using the SUMIF function”