How to Check if Range Contains Specific Value in Excel

To check if a range contains a specific value in Excel, you can use a combination of the IF and COUNTIF functions. The COUNTIF function counts the number of times a specific value appears in a given range, while the IF function returns a specific result based on whether the COUNTIF function returns a value greater than 0 or not.

Here's a step-by-step guide on how to check if a range contains a specific value in Excel:

  1. Open your Excel worksheet.
  2. Identify the range you want to search and the specific value you're looking for.
  3. In an empty cell, type the following formula:
=IF(COUNTIF(range, value) > 0, "Value Found", "Value Not Found")

Replace "range" with the actual range you want to search and "value" with the specific value you're looking for.

  1. Press Enter to get the result. If the specific value is found within the range, the formula will return "Value Found." Otherwise, it will return "Value Not Found."

Example

Let's say you have a range of values in cells A1:A10, and you want to check if the range contains the specific value 5.

  1. In an empty cell, type the following formula:
=IF(COUNTIF(A1:A10, 5) > 0, "Value Found", "Value Not Found")
  1. Press Enter.
  2. If the value 5 is present in the range A1:A10, the cell will display "Value Found." Otherwise, it will display "Value Not Found."
Did you find this useful?