How do you sum in Excel with if condition?

Numeric Criteria | Text Criteria | Date Criteria | And Criteria | Or Criteria

The powerful SUMIF function in Excel sums cells based on one criteria. This page contains many easy to follow SUMIF examples.

Numeric Criteria

Use the SUMIF function in Excel to sum cells based on numbers that meet specific criteria.

1. The SUMIF function below (two arguments) sums values in the range A1:A5 that are less than or equal to 10.

How do you sum in Excel with if condition?

2. The following SUMIF function gives the exact same result. The & operator joins the 'less than or equal to' symbol and the value in cell C1.

How do you sum in Excel with if condition?

3. The SUMIF function below (three arguments, last argument is the range to sum) sums values in the range B1:B5 if the corresponding cells in the range A1:A5 contain the value 25.

How do you sum in Excel with if condition?

4. The following SUMIF function gives the exact same result (second argument refers to cell D1).

How do you sum in Excel with if condition?

Text Criteria

Use the SUMIF function in Excel to sum cells based on text strings that meet specific criteria. Always enclose text in double quotation marks.

1. The SUMIF function below sums values in the range B1:B5 if the corresponding cells in the range A1:A5 contain exactly circle.

How do you sum in Excel with if condition?

2. The SUMIF function below sums values in the range B1:B5 if the corresponding cells in the range A1:A5 do not contain exactly triangle.

How do you sum in Excel with if condition?

3. The SUMIF function below sums values in the range B1:B5 if the corresponding cells in the range A1:A5 contain exactly circle + 1 character. A question mark (?) matches exactly one character.

How do you sum in Excel with if condition?

4. The SUMIF function below sums values in the range B1:B5 if the corresponding cells in the range A1:A5 contain a series of zero or more characters + le. An asterisk (*) matches a series of zero or more characters.

How do you sum in Excel with if condition?

5. The SUMIF functions below sum values in the range B1:B5 if the corresponding cells in the range A1:A5 contain exactly triangle or circle8.

How do you sum in Excel with if condition?

Date Criteria

Use the SUMIF function in Excel to sum cells based on dates that meet specific criteria.

1. The SUMIF function below sums the sales after January 20th, 2018.

How do you sum in Excel with if condition?

Note: the DATE function in Excel accepts three arguments: year, month and day.

2. The SUMIF function below sums today's sales.

How do you sum in Excel with if condition?

Note: today is August 3rd, 2018.

3. The SUMIFS function (with the letter S at the end) below sums the sales between two dates.

How do you sum in Excel with if condition?

Note: the SUMIFS function in Excel sums cells based on two or more criteria (first argument is the range to sum, followed by two or more range/criteria pairs). Adjust the dates to sum the sales in a specific month, year, etc.

And Criteria

Summing with And criteria in Excel is easy.

1. For example, to sum the cells that meet the following criteria: Google and Stanford (two criteria ranges), simply use the SUMIFS function (with the letter S at the end).

How do you sum in Excel with if condition?

Note: remember, when using the SUMIFS function, the first argument is the range to sum, followed by two or more range/criteria pairs.

Or Criteria

Summing with Or criteria in Excel can be tricky.

1. The formula below sums the cells that meet the following criteria: Google or Facebook (one criteria range). No rocket science so far.

How do you sum in Excel with if condition?

2. However, if you want to sum the cells that meet the following criteria: Google or Stanford (two criteria ranges), you cannot simply use the SUMIF function twice (see the picture below).

How do you sum in Excel with if condition?

Note: cells that meet the criteria Google and Stanford are added twice, but they should only be added once. 10 is the answer we are looking for.

3. The array formula below does the trick.

How do you sum in Excel with if condition?

Note: finish an array formula by pressing CTRL + SHIFT + ENTER. Excel adds the curly braces {}. Using Excel 365 or Excel 2021? Finish by simply pressing Enter. You won't see curly braces. Visit our page about Summing with Or Criteria for instructions on how to create this array formula.

How do you sum data based on a condition?

To sum with multiple criteria, either use the SUMIFS function (adds up cells that meet all the conditions) or build a SUMIF formula with multiple OR criteria (sums cells that meet any of the conditions).

How do you sum a column based on a condition?

(1) Select the column name that you will sum based on, and then click the Primary Key button; (2) Select the column name that you will sum, and then click the Calculate > Sum. (3) Click the Ok button.

Can you use Sumif in an if statement?

You can use IF to put together two SUMIFs.