What is Excel: Use an IF Function with Range of Values?

Excel’s IF function is a powerful tool that allows you to compare a range of values and return a result based on the comparison. This is especially useful when you need to compare a range of values and apply different criteria for each range. For example, you can use the IF function to check if a value is within a certain range and then return a specific result. This makes it easy to quickly and accurately perform calculations on data sets with multiple values.


You can use the following formulas to create an IF function with a range of values in Excel:

Method 1: Create IF Function with Range of Cells

=IF(COUNTIF(A2:A11,"Pacers")>0, "Exists", "Does Not Exist")

For this formula, if “Pacers” exists anywhere in the range A2:A11 then the function returns “Exists.” Otherwise it returns “Does Not Exist.”

Method 2: Create IF Function with Range of Numeric Values

=IF(((B2>=95)*(B2<=105))=1, "Yes", "No")

For this formula, if the value in cell B2 is between 95 and 105, then the function returns “Yes.” Otherwise it returns “No.”

The following examples show how to use each formula in practice with the following dataset in Excel:

Example 1: Create IF Function with Range of Cells

We can type the following formula into cell D2 to return “Exists” if the team name “Pacers” exists in the range A2:A11 or to return “Does Not Exist” if the team name does not exist in the range:

=IF(COUNTIF(A2:A11,"Pacers")>0, "Exists", "Does Not Exist")

The following screenshot shows how to use this formula in practice:

Excel IF function with range of values

The formula returns “Exists” since the string “Pacers” occurs at least once in the range A2:A11.

Example 2: Create IF Function with Range of Numeric Values

We can type the following formula into cell D2 to return “Yes” if the value in the Points column is between 95 and 105:

=IF(((B2>=95)*(B2<=105))=1, "Yes", "No")

We can then drag and fill this formula down to each remaining cell in column D:

Here’s what the formula does for each row in column D:

  • If the value in the Points column is between 95 and 105, return Yes.
  • If the value in the Points column is not between 95 and 105, return No.

Also note that you can change the last two arguments in the IF function to something other than “Yes” or “No” if you’d like to return different output values.

Note: The multiplication symbol (*) in the IF function tells Excel that both conditions must be met in order to return “Yes.”

x