WorksheetFunction.SumIfs Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds the cells in a range that meet multiple criteria.
public double SumIfs (Microsoft.Office.Interop.Excel.Range Arg1, Microsoft.Office.Interop.Excel.Range Arg2, object Arg3, object Arg4, object Arg5, object Arg6, object Arg7, object Arg8, object Arg9, object Arg10, object Arg11, object Arg12, object Arg13, object Arg14, object Arg15, object Arg16, object Arg17, object Arg18, object Arg19, object Arg20, object Arg21, object Arg22, object Arg23, object Arg24, object Arg25, object Arg26, object Arg27, object Arg28, object Arg29);
Public Function SumIfs (Arg1 As Range, Arg2 As Range, Arg3 As Object, Optional Arg4 As Object, Optional Arg5 As Object, Optional Arg6 As Object, Optional Arg7 As Object, Optional Arg8 As Object, Optional Arg9 As Object, Optional Arg10 As Object, Optional Arg11 As Object, Optional Arg12 As Object, Optional Arg13 As Object, Optional Arg14 As Object, Optional Arg15 As Object, Optional Arg16 As Object, Optional Arg17 As Object, Optional Arg18 As Object, Optional Arg19 As Object, Optional Arg20 As Object, Optional Arg21 As Object, Optional Arg22 As Object, Optional Arg23 As Object, Optional Arg24 As Object, Optional Arg25 As Object, Optional Arg26 As Object, Optional Arg27 As Object, Optional Arg28 As Object, Optional Arg29 As Object) As Double
Parameters
- Arg1
- Range
Sum_range - the range to sum.
- Arg2
- Range
Criteria_range1, criteria_range2, … - one or more ranges in which to evaluate the associated criteria.
- Arg3
- Object
Criteria1, criteria2, … - one or more criteria in the form of a number, expression, cell reference, or text that define which cells will be added. For example, criteria can be expressed as 32, "32", ">32", "apples", or B4.
- Arg4
- Object
- Arg5
- Object
- Arg6
- Object
- Arg7
- Object
- Arg8
- Object
- Arg9
- Object
- Arg10
- Object
- Arg11
- Object
- Arg12
- Object
- Arg13
- Object
- Arg14
- Object
- Arg15
- Object
- Arg16
- Object
- Arg17
- Object
- Arg18
- Object
- Arg19
- Object
- Arg20
- Object
- Arg21
- Object
- Arg22
- Object
- Arg23
- Object
- Arg24
- Object
- Arg25
- Object
- Arg26
- Object
- Arg27
- Object
- Arg28
- Object
- Arg29
- Object
Returns
Remarks
Each cell in sum_range is summed only if all of the corresponding criteria specified are true for that cell.
Cells in sum_range that contain true evaluate as 1; cells in sum_range that contain false evaluate as 0 (zero).
You can use the wildcard characters, question mark (?) and asterisk (*), in criteria. A question mark matches any single character; an asterisk matches any sequence of characters. If you want to find an actual question mark or asterisk, type a tilde (~) before the character.
Each criteria_range does not have to be the same size and shape as sum_range. The actual cells that are added are determined by using the top, left cell in that criteria_range as the beginning cell, and then including cells that correspond in size and shape to sum_range. For example:
A1:A5 | B1:B5 | B1:B5 |
A1:A5 | B1:B3 | B1:B5 |
A1:B4 | C1:D4 | C1:D4 |
A1:B4 | C1:C2 | C1:D4 |