Excel: Check if One Column Value Exists in Another Column


You can use the following formula to check if one column value exists in another column in Excel:

=NOT(ISERROR(MATCH(A2,$B$2:$B$16,0)))

This particular formula checks if the value in cell A2 exists in the range B2:B16.

If it does exist in the range B2:B16, the formula returns TRUE. Otherwise, it returns FALSE.

The following example shows how to use this formula in practice.

Example: Check if One Column Value Exists in Another Column in Excel

Suppose we have the following dataset in Excel where one column contains a list of groceries needed and the other column contains a list of groceries available at the store:

Suppose we would like to check if each item in the Grocery List column also exists in the Grocery Inventory column.

To do so, we can type the following formula into cell C2:

=NOT(ISERROR(MATCH(A2,$B$2:$B$16,0)))

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

Excel check if one column value exists in another column

Column C shows whether or not each cell in column A also exists in column B.

For example, we can see:

  • Apples does exist in the grocery inventory.
  • Bananas does exist in the grocery inventory.
  • Carrots does not exist in the grocery inventory.
  • Pears does exist in the grocery inventory.
  • Peppers does not exist in the grocery inventory.

If you’d like to return values other than TRUE and FALSE, you can wrap the formula in an IF function and specify the values you’d like to return.

For example, we can use the following formula to instead return “Yes” or “No” instead of TRUE or FALSE:

=IF(NOT(ISERROR(MATCH(A2,$B$2:$B$16,0))), "Yes", "No")

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

The formula now returns “Yes” if the item in the Grocery List exists in the Grocery Inventory or “No” if it does not.

Additional Resources

The following tutorials explain how to perform other common tasks in Excel:

How to Check if Range Contains Specific Value in Excel
How to Check if Cell Contains Text from List in Excel
How to Calculate Average If Cell Contains Text in Excel

Leave a Reply

Your email address will not be published. Required fields are marked *