HomeGoogle DocsSpreadsheetHow to Compare Two Columns for Matching Values in Google Sheets

How to Compare Two Columns for Matching Values in Google Sheets

Published on

With the assistance of lookup functions, we can compare two columns for both matching and mismatching values in Google Sheets.

I prefer using the XMATCH function for this task, as it is one of the most modern lookup functions in Google Sheets.

Comparing columns for matches or mismatches is a valuable technique that proves beneficial in real-life scenarios. For instance, you can match the requirements of vehicle parts in one column with the stock in another column.

Comparing Two Columns for Matching Values

This is not a quantity-wise comparison; instead, it’s an item-wise comparison. For the test, we have the stock of vehicle parts in Column A (names) and requirements (names) in Column B.

Let’s compare these two columns, A and B, with the data range being A2:A and B2:B, considering that A1 and B1 contain field labels.

Initially, we will compare Column B (required parts) with A (stock).

Find Matching Values in Column B from Column A

The following formula will return tick marks against the required items if they are found in the stock.

=ArrayFormula(IF(IFNA(XMATCH(B2:B, A2:A)), "x", ))
Example of Comparing Two Columns for Matching Values in Google Sheets

You can enter this formula in cell C2. Before you input this formula, please ensure two things:

  1. C2:C must be blank: Select C2:C and hit the delete key to remove everything in this range.
  2. Enter the formula where the row of the comparing column ranges begins: In our example, the ranges are A2:A and B2:B, with row #2 being the starting row. Therefore, it’s suggested to insert the formula in C2.

Anatomy of the Formula:

It’s an XMATCH array formula where B2:B is the search key, and A2:A is the lookup range.

The formula searches the values in B2:B in A2:A and returns relative positions of matching values. If there is no match, the formula returns #N/A, and the IFNA wrapper removes those errors. What’s left are the relative positions of matching items.

For readability, we have used an IF logical test to convert those relative positions to “x.” An “x” indicates that it found matches in column A. If you prefer, you can replace relative positions with a green tick mark. For that, replace “x” in the formula with CHAR(9989).

This is an example of comparing two columns for matching values in Google Sheets. Let’s move on to another example.

Find Matching Values in Column A from Column B

Here is a different scenario for comparing two columns. Suppose you want to identify the items in the stock that are sought. In other words, find matching values in Column A from Column B.

For that, we can use the XMATCH formula with minor changes. In XMATCH, replace the search key with A2:A and the lookup range with B2:B.

Formula:

=ArrayFormula(IF(IFNA(XMATCH(A2:A, B2:B)), "x", ))
Find Matching Values in Column A from Column B

The formula returns a checkmark next to the stock items that are sought.

With this example, we conclude the comparison of two columns for matching values. Let’s now proceed to compare two columns for mismatching values.

Compare Two Columns for Mismatching Values

Comparing two columns for mismatching values is slightly different from comparing matching values. For example, you can use it to mark the items that are not available in the stock or mark the non-required items in the stock. The latter is less common in use, but I will include that too.

Formula to Find Mismatching Values in Column B from Column A:

=ArrayFormula(IF(B2:B="", ,IFNA(IF(XMATCH(B2:B, A2:A),), "x")))
Example of Comparing Two Columns for Mismatching Values in Google Sheets

This formula will return “x” marks in rows next to the required parts where they are not available in the stock.

Formula to Find Mismatching Values in Column A from Column B:

=ArrayFormula(IF(A2:A="", ,IFNA(IF(XMATCH(A2:A, B2:B),), "x")))
Find Mismatching Values in Column A from Column B

This formula will return “x” marks next to the stock items that are not found in the required list. It’s not as commonly used.

Anatomy of the Formula:

Let me explain these two formulas in comparison to the formulas that we used for comparing two columns for matching values.

  • In the earlier formulas, we used IFNA to remove #N/A errors. Here, instead, we have used it to convert #N/A to “x”.
  • In the earlier formulas, the IF converted relative positions to “x”. Here, instead, it removes relative positions.
  • In addition to the above two changes, we have employed another IF logical test, i.e., IF(B2:B="", or IF(A2:A="", to return blank in rows where the search keys (column to compare) are blank. This will prevent the formulas from leaving check marks in empty rows.

Resources

Prashanth KV
Prashanth KV
Your Trusted Google Sheets and Excel Guide Prashanth KV brings a wealth of experience in Google Sheets and Excel, cultivated through years of work with multinational corporations in Mumbai and Dubai. As a recognized Google Product Expert in Docs Editors, Prashanth shares his expertise through insightful blogging since 2012. Explore his blog for practical tips and guidance on maximizing your spreadsheet skills.

Get Top N Values Using Excel’s FILTER Function

When using the FILTER function in Excel to extract the top N values, it's...

XLOOKUP in Excel: Working with Visible Rows in a Table

In Excel, the XLOOKUP function isn't inherently designed to exclusively work with visible rows;...

SUMPRODUCT Differences: Excel vs. Google Sheets

The core purpose of the SUMPRODUCT function remains consistent across both Excel and Google...

Sum Values by Month and Category in Excel

With the help of EOMONTH, UNIQUE, and SUMIFS functions in Excel, you can efficiently...

More like this

Interactive Random Task Assigner in Google Sheets

You have multiple tasks and multiple people. Here's a fun way to randomly assign...

Google Sheets Bar and Column Chart with Target Coloring

To color each data point in the column or bar chart according to the...

Analyzing Column A Between Non-Adjacent Values in Column B: Google Sheets

This tutorial addresses a common scenario encountered in Google Sheets: how to sum, average,...

2 COMMENTS

  1. I see the following error:

    The array result was not expanded because it would overwrite data in T3.

    It looks like it doesn’t want to place the result in the same cell as the formula.

    • The formula requires an empty column to populate the result. If the range to compare contains 100 rows, the formula requires 100 empty rows. Also, please note that I’ve updated this post with new formulas.

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.