Excel IF statements: 12 logical formulas to get started

[email protected]

Excel functions, or formulas, lie at the heart of the application’s deep well of capabilities. Today we’ll tackle IF statements, a string of commands that determine whether a condition is met or not. Just like a yes-no question, if the specified condition is true, Excel returns one user-determined value and, if false, it returns another.

The IF statement is also known as a logical formula: IF, then, else. If something is true, then do this, else/otherwise do that. For example, if it’s raining, then close the windows, else/otherwise leave the windows open.

The syntax (or sentence structure; that is, the way the commands are organized in the formula) of an Excel IF statement is: =IF(logic_test, value_if true, value_if_false). IF statements are used in all programming languages and, although the syntax may vary slightly, the function provides the same results.

Remember: Learning Excel functions/formulas and how they work are the first steps toward using Visual Basic, Microsoft’s event-driven programming language. We’ll start with three easy IF statements, then move on to nested IF statements and multi-function IF statements. At the end we’ll get fancy with COUNTIF, SUMIF, AVERAGEIF, and IF with wildcards.

Simple IF statements

1. Past-due notices

In this spreadsheet, the customer’s payment due date is listed in column A, the payment status is shown in column B, and the customer’s company name is in column C. The company accountant enters the date that each payment arrives, which generates this Excel spreadsheet. The bookkeeper enters a formula in column B that calculates which customers are more than 30 days past due, then sends late notices accordingly.

A. Enter the formula: =TODAY() in cell A1, which displays as the current date.

B. Enter the formula: =IF(A4-TODAY()>30, “Past Due”, “OK”) in cell B4.

In English, this formula means: If the date in cell A4 minus today’s date is greater than 30 days, then enter the words ‘Past Due’ in cell B4, else/otherwise enter the word ‘OK.’ Copy this formula from B4 to B5 through B13.

02b use if statements to flag past due accounts JD Sartain / IDG Worldwide

Use IF statements to flag past-due accounts so you can send notices to those customers

2. Pass/Fail lifeguard test

The Oregon Lifeguard Certification is a Pass/Fail test that requires participants to meet a minimum number of qualifications to pass. Scores of less than 70 percent fail, and those scores greater than that, pass. Column A lists the participants’ names; column B shows their scores; and column C displays whether they passed or failed the course. The information in column C is attained by using an IF statement.

Once the formulas are entered, you can continue to reuse this spreadsheet forever. Just change the names at the beginning of each quarter, enter the new grades at the end of each quarter, and Excel calculates the results.

A. Enter this formula in cell C4: =IF(B4<70,”FAIL”,”PASS”). This means if the score in B4 is less than 70, then enter the word FAIL in cell B4, else/otherwise enter the word PASS. Copy this formula from C4 to C5 through C13.

03b use if statements to convert numeric scores to pass fail status JD Sartain / IDG Worldwide

Use an IF statement to convert numeric scores to a pass-fail status.

3. Sales & bonus commissions

Wilcox Industries pays its sales staff a 10-percent commission for all sales greater than $10,000. Sales below this amount do not receive a bonus. The names of the sales staff are listed in column A. Enter each person’s total monthly sales in column B. Column C multiples the total sales by 10 percent, and column D displays the commission amount or the words ‘No Bonus.’ Now you can add the eligible commissions in column D and find out how much money was paid out in bonuses for the month of August.

A. Enter this formula in cell C4: =SUM(B4*10%), then copy from C4 to C5 through C13. This formula calculates 10 percent of each person’s sales.

B. Enter this formula in cell D4: =IF(B4>10000, C4, “No bonus”), then copy from D4 to D5 through D13. This formula copies the percentage from column C for sales greater than $10,000 or the words ‘No Bonus’ for sales less than $10,000 into column D.

C. Enter this formula in cell D15: =SUM(D4:D13). This formula sums the total bonus dollars for the current month.

04b use if statements to calculate sales bonus commissions JD Sartain / IDG Worldwide

Use an IF statement to calculate sales bonus commissions.

Nested IF statements

4. Convert scores to grades with nested IF statements

This example uses a “nested” IF statement to convert the numerical Math scores to letter grades. The syntax for a nested IF statement is this: IF data is true, then do this; IF data is true, then do this; IF data is true, then do this; IF data is true, then do this; else/otherwise do that. You can nest up to seven IF functions.

The student’s names are listed in column A; numerical scores in Column B; and the letter grades in column C, which are calculated by a nested IF statement.

A. Enter this formula in cell C4: =IF(B4>89,”A”,IF(B4>79,”B”,IF(B4>69,”C”,IF(B4>59,”D”,”F”)))) , then copy from C4 to C5 through C13.

Note: Every open, left parenthesis in a formula must have a matching closed, right parenthesis. If your formula returns an error, count your parentheses.

05b use nested if statement to convert numeric scores to letter grades JD Sartain / IDG Worldwide

Use a nested IF statement to convert numeric scores to letter grades.

5. Determine sliding scale sales commissions with nested IF statements

This example uses another nested IF statement to calculate multiple commission percentages based on a sliding scale, then totals the commissions for the month. The syntax for a nested IF statement is this: IF data is true, then do this; IF data is true, then do this; IF data is true, then do this; else/otherwise do that. The names of the sales staff are listed in column A; each person’s total monthly sales are in column B; and the commissions are in column C, which are calculated by a nested IF statement, then totaled at the bottom of that column (in cell C15).

A. Enter this formula in cell C4: =IF(B4<5000,B4*7%,IF(B4<8000,B4*10%,IF(B4<10000,B4*12.5%,B4*15%))) , then copy from C4 to C5 through C13.

B. Enter this formula in cell C15: =SUM(C4:C13). This formula sums the total commission dollars for the current month.

06b use nested if statement to calculate different commissions based on different percentages JD Sartain / IDG Worldwide

Use a nested IF statement to calculate different commissions based on different percentages.

6. Calculate product price based on quantity

Many retailers and most wholesalers provide customers a price break based on quantity. For example, a wholesaler may sell 1 to 10 T-shirts for $10.50 each, and 11 to 25 T-shirts for $8.75 each. Use the following IF statement formula to determine how much money you can save by purchasing wholesale products for your company in bulk.

A. Enter the header Wholesale Prices in cell A3. Enter the headers Qty and Cost in cells B3 and C3.

B. Enter the quantity breaks in cells B4 through B9.

C. Enter the price breaks in cells C4 through C9.

This is the quantity/price matrix for your wholesale business.

07b calculate product prices based on quantity JD Sartain / IDG Worldwide

Calculate product prices based on quantity.

D. Next, enter the headers Qty Ordered and Qty Cost in cells B11 and C11.

E. Enter the header Wholesale Products in cell A11, then enter as many products as you like below.

F. Enter the quantity ordered for each product in column B.

G. And last, enter the following formula in the adjacent cells of column C:

=B12*IF(B12>=101,3.95,IF(B12>=76,5.25,IF(B12>=51,6.3,IF(B12>=26,7.25, IF(B12>=11,8,IF(B12>=1,8.5,””))))))

Note there are no spaces in this formula. Copy down the formula as far as needed in column C to apply to all the wholesale products and quantities in columns A and B.

H. Once the order is complete, create a total line: In column A (in this case, A20), type TOTAL Invoice Amount. In column C (in this case, C20), use the SUM function to total the column.

Now, that all the formulas are in place, all you have to do each week (or month) is enter the new quantities in column B, and Excel does the rest. If the prices change, just modify the matrix at the top of the spreadsheet, and all the other formulas and totals will automatically adjust.

Multi-function IF statements

7. Using other functions inside the IF statement

In this example, we’ll nest two IF statements and insert the SUM function all into the same formula. The purpose is to determine whether the individual’s goals are less than, equal to, or greater than the company’s monthly cap.

A. Enter a monthly cap amount in B1, which can be changed every month to reflect the company’s expectations.

B. Enter the following headers in cells A3 through G3:Goals, 1st Qtr, 2nd Qtr,3d Qtr, 4th Qtr, Goals or Cap? and Bonus.

C. Enter the top five marketing persons’ goal amounts in cells A4 through A8.

D. Enter the same individuals’ quarterly totals in cells B4 through E8.

08b using other functions inside the if statement JD Sartain / IDG Worldwide

Using other functions INSIDE the If Statement

For employees who achieved their goals, the bonus is 10% of the goal amount. For employees who exceeded the monthly cap, the bonus is 25% of their actual sales. Use these formulas to determine the bonus amounts.

E. Enter this formula in cells F4 through F8: =IF(A4<=B1,A4,IF(A4>B1,SUM(B4:E4,0)))

F. Enter this formula in cells G4 through G8: =IF(F4<=A4,F4*10%,IF(F4>=B1,F4*25%,0))

8. Use IF to avoid dividing by zero

In Excel, if you try to divide any number by zero, the error message that Excel displays is this: #DIV/0!

So, what to do if you have a large database that requires a calculation based on division, and some of the cells contain zeros? Use the following IF statement formula to address this problem.

A. To track the money collected per month by the staff at Friar Tuck’s Fundraisers, open a spreadsheet and create the following headers:Dollars in A1, Dollars per Worker in B1, Dollars Left Over in C1.

B. Enter some dollar amounts in column A and the number of staff working per day in column B. Column B will include some zeroes because, some days, nobody works (but donations still come in through the mail).

C. Enter this formula in C2 through C11: =IF(B2<>0,A2/B2,0). By using an IF statement to prevent Excel from dividing any of the funds collected by zero, only the valid numbers are calculated.

09b use if to avoid errors from dividing by zero JD Sartain / IDG Worldwide

Use IF to avoid errors from dividing by zero.

D. You could use another IF statement to locate the zeroes in column B, then total the corresponding dollars in column A, which would then be divided equally among all the staff. Copy this formula in D2 through D11: =IF(B4=0,A4,0).

E. Next, move your cursor to B12 and enter this formula =MAX(B2:B11) to locate the largest number of workers in column B, which is eight.

F. Move your cursor to D12 and enter this formula: =SUM(D2:D11)/B12. The answer is $392.50 for each of the eight staff members working at Friar Tuck’s Fundraisers.

COUNTIF, SUMIF, AVERAGEIF, & IF with wildcards

9. Use COUNTIF to satisfy specific criteria

COUNTIF is an IF statement that counts the contents of a range of cells based on explicit criteria (that you specify) that’s contained within that range of cells. The syntax is simple: formula, range, criteria: =COUNTIF (range, criteria).

In this example, we’ll use COUNTIF to count the cells in a specific range that are greater than > a chosen number, less than < a chosen number, equal to a chosen number, or a combination of two or more logical operators used together.

Greater Than >

A. Enter some numbers in cells A4 through A16.

B. In cell E4, enter this formula: =COUNTIF($A$4:$A$16,”>1610″)

C. Then enter the “greater than” number in cell F4, so you can verify that the formula works.

D. Copy E4 down from E5 to E11, then change the greater than values to a different number.

Less Than <

A. Enter 13 numbers in column B (B4:B16).

B. In cell G4, enter this formula: =COUNTIF($B$4:$B$16,”<200″)

C. Then enter the “less than” number in cell H4, so you can verify that the formula works.

D. Copy G4 down from G5 through G11, then change the less than values to a different number.

Equal To =

A. Enter 13 numbers in column C (C4:C16).

B. In cell I4, enter this formula: =COUNTIF($C$4:$C$16,”<2010″)

C. Then enter the “equal to” number in cell J4, so you can verify that the formula works.

D. Copy I4 down from I5 through I11, then change the less than values to a different number.

NOTE: You can also combine these logical operators to broaden your results. For example, Greater than or equal to: =COUNTIF($A$4:$A$16,”>=1610″); Less than or equal to: =COUNTIF($A$4:$A$16,”<=1655″)

10 use countif to satisfy specific criteria JD Sartain / IDG Worldwide

Use COUNTIF to satisfy specific criteria.

In this example, we’ll use COUNTIF to count all the cells in a specified range that match the selected dates, dollars, or text.

E. Enter some dates in column A4:A12; enter some text such as flowers in column B4:B12, and enter some dollars in column C4:C12.

F. Enter the following formulas in column D “Single Dates,” D4, D5, D6, D7, and D8:

=COUNTIF($A$4:$A$12, “>=9/1/2018”); =COUNTIF($A$4:$A$12, “>=2/6/2018”); =COUNTIF($A$4:$A$12, “>=12/7/2018”); =COUNTIF($A$4:$A$12, “>=5/14/2018”); and =COUNTIF($A$4:$A$12, “>=8/9/2018”).

G. Enter the following formulas in column E “Single Text String,” E4, E5, E6, E7, and E8:

=COUNTIF($B$4:$B$12, “=Roses”); =COUNTIF($B$4:$B$12, “=Daisies”); =COUNTIF($B$4:$B$12, “=Tulips”); =COUNTIF($B$4:$B$12, “=Lillies”); and =COUNTIF($B$4:$B$12, “=Daffodils”)

H. Enter the following formulas in column G “Multiple Text Strings,” G4, G5, G6, G7, and G8:

=COUNTIF($B$4:$B$10, “=Roses”)+COUNTIF($B$4:$B$12, “Daisies”); =COUNTIF($B$4:$B$10, “=Roses”)+COUNTIF($B$4:$B$12, “Tulips”); =COUNTIF($B$4:$B$10, “=Tulips”)+COUNTIF($B$4:$B$12, “Daffodils”); =COUNTIF($B$4:$B$10, “=Lillies”)+COUNTIF($B$4:$B$12, “Daisies”); and =COUNTIF($B$4:$B$10, “=Lillies”)+COUNTIF($B$4:$B$12, “Tulips”)

I. Enter the following formulas in column I “Dollars,” I4, I5, I6, I7, and I8:

=COUNTIF(C4:C12,”<=30″); =COUNTIF($C$4:$C$12,”>=100″); =COUNTIF($C$4:$C$12,”<=75″); =COUNTIF($C$4:$C$12,”=50″); =COUNTIF($C$4:$C$12,”<=25″)

011 use countif to countmatch cells in a range for selected dates dollars text JD Sartain / IDG Worldwide

Use COUNTIF to count+match cells in a range for selected dates, dollars, or text.

10. Use SUMIF to add the values in a range that meet your specific criteria.

Basically, you create a range (or column) of numbers, dates, or text that contains the data you want your criteria to match. The criteria are the specific value, date, or text that you want matched from that original range, and the sum range is the column that will be summed once the criteria is determined.

A. For example, in column A4:A19, enter the five different boroughs in New York: Manhattan, Brooklyn, Queens, The Bronx, Staten Island.

B. In column B4:B19, enter the bridges in the five boroughs.

C. In column C4:C19, enter the dollar amount for the tolls collected on each bridge in each borough.

D. In column D4:D8, enter the first criteria you want matched; for example, Manhattan, Queens, the Bronx, etc.

E. In column E4:E8, enter the SUMIF formulas: =SUMIF($A$4:$A$19, D4, $C$4:$C$19) for E4:E8.

F. Use the Function key F4 to make the range (column A) and sum range (column C) absolute, but not the criteria column D. Then all you have to do is copy the formula down.

G. In column E9:E13, enter the first criteria you want matched, then enter a second criteria in F9:F13. Next, enter the SUMIF formula: =SUMIF($A$4:$A$20,D9,$C$4:$C$19) + SUMIF($A$4:$A$20,F9,$C$4:$C$19) for E9:E13 and copy down to E13. Notice that the criteria is matched from Criteria1 (column D) and Criteria2 (column F).

H. In column E14:E19, enter the SUMIF “hardcoded” formula (that just means the criteria is coded inside the formula: =SUMIF($A$4:$A$19,”Brooklyn”,$C$4:$C$19) + SUMIF($A$4:$A$19,”Queens”,$C$4:$C$19) and copy down to E19, then change the criteria in each formula to match the data in D14:D19.

NOTE: That the criteria can be entered in a separate cell off to the side or hardcoded into the formula. The benefit of using a separate cell means you can easily change the criteria without rewriting the formula. Obviously, G (above) is much easier and makes more sense than hardcoding (H) the criteria inside the formula, but there may be a situation in the future where the hardcoded solution is a better fit.

012 use sumif to add values in a range that meet specific criteria JD Sartain / IDG Worldwide

Use SUMIF to add values in a range that meet specific criteria.

11. Use AVERAGEIF to average the values in a range that meet your specific criteria.

AVERAGEIF is just like SUMIF except that you average the numbers instead of summing them. The syntax for this formula is: =AVERAGEIF (range, criteria, average_range).

A. Enter 17 college subjects in column A4:A20.

B. Enter the corresponding genres in column B4:B20.

C. Enter the number of students enrolled in each subject & genre in column C4:C20.

D. Enter the criteria you want matched to get the average number of students in each subject in D4:D9.

E. Enter the formula in E4:E9; that is: =AVERAGEIF($A$4:$A$20, D4, $C$4:$C$20). Copy the formula down through E9.

F. Enter the Criteria1 plus the Criteria2 you want matched to get the average number of students in two specified subjects in D10:D15 and F10:F15.

G. Enter the formula in E10:E15; that is: = =AVERAGEIF($A$4:$A$20,D10,$C$4:$C$20) + AVERAGEIF($A$4:$A$20,F10,$C$4:$C$20). Copy the formula down through E15.

H. In column E16:E20, enter the AVERAGEIF “hardcoded” formula, which means the criteria is coded inside the formula: =AVERAGEIF($A$4:$A$20,”History”,$C$4:$C$20) + AVERAGEIF($A$4:$A$20,”Geography”,$C$4:$C$20) and then copy down to E20, and change the criteria in each formula to match the data in D16:D20.

013 use averageif to average values in a range that meet specific criteria JD Sartain / IDG Worldwide

Use AVERAGEIF to average values in a range that meet specific criteria.

12. Using Wildcards with IF statements

A. The asterisk (*) represents any number of characters; for example, op* could mean operator, opposition, opulent, opportunity, etc.

B. The question mark (?) represents a single character; for example, m?th could be math, moth, meth, myth, etc.

C. The tilde (~) identifies a wildcard character (~ * ?) in the text that’s separate from the keyboard character; that is, the asterisk as a symbol as opposed to a wildcard. For example, if you wanted to find the exact characters in the word ‘moon’ followed by an asterisk (moon*), this search string would return all words with ‘moon’ at the beginning, followed by any/all other words with the root word ‘moon’ such as moonshine, moonlight, moonstone, etc.). To locate the word ‘moon’ followed by an asterisk, use the tilde (~) to tell Excel that the asterisk (in this case) is NOT a wildcard. The syntax would look like this: moon~*.

D. In column A3:A21, enter some related items such as Wally World, Sea World, Fairy Worlds, etc.

E. In column B3:B11, enter the following formula using the asterisk (*) wildcard: =COUNTIF($A$3:$A$21,”*world*”), then copy the formula down through B11 changing the criteria word for each formula such as “*land*”; “*Fairy*”; “*Sea*”; etc.

F. In column C3:C21, enter nine different items of clothing. Because there are 19 rows, many items will be repeated.

G. In column D3:D21, enter the cost for each item in column C.

H. In column E3 through E11, enter the following formula using the asterisk (*) wildcard: =SUMIF($C$3:$C$21,”*Suits*”,$D$3:E3). Copy the formula down to E11, then change the criteria words to Jackets, Jeans, Sweaters, Skirts, Vests, Gloves, Dresses, and Shoes or choose your own criteria words.

I. In column E12 through E21, enter the following formula using the asterisk (*) wildcard: =SUMIF($C$3:$C$21,”*Shoes*”,$D$3:$D$21) + SUMIF($C$3:$C$21,”*Jeans*”,$D$2:$D$9), then change the criteria words to Shoes & Jeans, Jackets & Vests, Skirts & Sweaters, Dresses & Shoes, Skirts & Vests, Jeans & Jackets, Suits & Gloves, Sweaters & Vests, Shoes & Gloves, and Shoes & Suits or choose your own criteria words.

014 using wildcards with if statements JD Sartain / IDG Worldwide

Using Wildcards with IF statements

Editor’s note: This article was updated from its original posting on September 8, 2015.

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注