Adds the cells specified by a given criteria.
Syntax
SUMIF(range,criteria,sum_range)
Range is the range of cells that you want evaluated by criteria.
Criteria is the criteria in the form of a number, expression, or text that defines which cells will be added. For example, criteria can be expressed as 32, "32", ">32", or "apples".
Sum_range are the actual cells to add if their corresponding cells in range match criteria. If sum_range is omitted, the cells in range are both evaluated by criteria and added if they match criteria.
Remarks
Example
The example may be easier to understand if you copy it to a blank worksheet.
How to copy an example
- Create a blank workbook or worksheet.
- Select the example in the Help topic.
Note Do not select the row or column headers.

Selecting an example from Help
- Press CTRL+C.
- In the worksheet, select cell A1, and press CTRL+V.
- To switch between viewing the results and viewing the formulas that return the results, press CTRL+` (grave accent), or on the Formulas tab, in the Formula Auditing group, click the Show Formulas button.
|
|
| A |
B |
| Property Value |
Commission |
| 100,000 |
7,000 |
| 200,000 |
14,000 |
| 300,000 |
21,000 |
| 400,000 |
28,000 |
| Formula |
Description (Result) |
| =SUMIF(A2:A5,">160000",B2:B5) |
Sum of the commissions for property values over 160000 (63,000) |
| =SUMIF(A2:A5,">160000") | Sum of the property values over 160000 (900,000) | | =SUMIF(A2:A5,"=300000",B2:B3) | Sum of the commissions for property values over 160000 (21,000) |
|
Related Office Online discussions
Read related questions and answers from other Microsoft Office customers.