Excel: Compare two columns for matches and differences (2024)

Comparing columns in Excel is something that we all do once in a while. Microsoft Excel offers a number of options to compare and match data, but most of them focus on searching in one column. In this tutorial, we will explore several techniques to compare two columns in Excel and find matches and differences between them.

How to compare 2 columns in Excel row-by-row

When you do data analysis in Excel, one of the most frequent tasks is comparing data in each individual row. This task can be done by using the IF function, as demonstrated in the following examples.

Example 1. Compare two columns for matches or differences in the same row

To compare two columns in Excel row-by-row, write a usual IF formula that compares the first two cells. Enter the formula in some other column in the same row, and then copy it down to other cells by dragging the fill handle (a small square in the bottom-right corner of the selected cell). As you do this, the cursor changes to the plus sign:Excel: Compare two columns for matches and differences (1)

Formula for matches

To find cells within the same row having the same content, A2 and B2 in this example, the formula is as follows:

=IF(A2=B2,"Match","")

Formula for differences

To find cells in the same row with different values, simply replace the equals sign with the non-equality sign (<>):

=IF(A2<>B2,"No match","")

Matches and differences

And of course, nothing prevents you from finding both matches and differences with a single formula:

=IF(A2=B2,"Match","No match")

Or

=IF(A2<>B2,"No match","Match")

The result may look similar to this:Excel: Compare two columns for matches and differences (2)

As you see, the formula handles numbers, dates, times and text strings equally well.

Tip. You can also compare two columns row-by-row using Excel Advanced Filter. Here is an example showing how to filter matches and differences between 2 columns.

Example 2. Compare two lists for case-sensitive matches in the same row

As you have probably noticed, the formulas from the previous example ignore case when comparing text values, as in row 10 in the screenshot above. If you want to find case-sensitive matches between 2 columns in each row, then use the EXACT function:

=IF(EXACT(A2, B2), "Match", "")Excel: Compare two columns for matches and differences (3)

To find case-sensitive differences in the same row, enter the corresponding text ("Unique" in this example) in the 3rd argument of the IF function, e.g.:

=IF(EXACT(A2, B2), "Match", "Unique")

Compare multiple columns for matches in the same row

In your Excel worksheets, multiple columns can be compared based on the following criteria:

  • Find rows with the same values in all columns (Example 1)
  • Find rows with the same values in any 2 columns (Example 2)

Example 1. Find matches in all cells within the same row

If your table has three or more columns and you want to find rows that have the same values in all cells, an IF formula with an AND statement will work a treat:

=IF(AND(A2=B2, A2=C2), "Full match", "")Excel: Compare two columns for matches and differences (4)

If your table has a lot of columns, a more elegant solution would be using the COUNTIF function:

=IF(COUNTIF($A2:$E2, $A2)=5, "Full match", "")

Where 5 is the number of columns you are comparing.

Example 2. Find matches in any two cells in the same row

If you are looking for a way to compare columns for any two or more cells with the same values within the same row, use an IF formula with an OR statement:

=IF(OR(A2=B2, B2=C2, A2=C2), "Match", "")Excel: Compare two columns for matches and differences (5)

In case there are many columns to compare, your OR statement may grow too big in size. In this case, a better solution would be adding up several COUNTIF functions. The first COUNTIF counts how many columns have the same value as in the 1st column, the second COUNTIF counts how many of the remaining columns are equal to the 2nd column, and so on. If the count is 0, the formula returns "Unique", "Match" otherwise. For example:

=IF(COUNTIF(B2:D2,A2)+COUNTIF(C2:D2,B2)+(C2=D2)=0,"Unique","Match")Excel: Compare two columns for matches and differences (6)

How to compare two columns in Excel for matches and differences

Suppose you have 2 lists of data in Excel, and you want to find all values (numbers, dates or text strings) which are in column A but not in column B.

For this, you can embed the COUNTIF($B:$B, $A2)=0 function in IF's logical test and check if it returns zero (no match is found) or any other number (at least 1 match is found).

For instance, the following IF/COUNTIF formula searches across the entire column B for the value in cell A2. If no match is found, the formula returns "No match in B", an empty string otherwise:

=IF(COUNTIF($B:$B, $A2)=0, "No match in B", "")Excel: Compare two columns for matches and differences (7)

Tip. If your table has a fixed number of rows, you can specify a certain range (e.g. $B2:$B10) rather than the entire column ($B:$B) for the formula to work faster on large data sets.

The same result can be achieved by using an IF formula with the embedded ISERROR and MATCH functions:

=IF(ISERROR(MATCH($A2,$B$2:$B$10,0)),"No match in B","")

Or, by using the following array formula (remember to press Ctrl + Shift + Enter to enter it correctly):

=IF(SUM(--($B$2:$B$10=$A2))=0, " No match in B", "")

If you want a single formula to identify both matches (duplicates) and differences (unique values), put some text for matches in the empty double quotes ("") in any of the above formulas. For example:

=IF(COUNTIF($B:$B, $A2)=0, "No match in B", "Match in B")

How to compare two lists in Excel and pull matches

Sometimes you may need not only match two columns in two different tables, but also pull matching entries from the lookup table. Microsoft Excel provides a special function for this - the VLOOKUP function. As an alternative, you can use a more powerful and versatile INDEX MATCH formula. The users of Excel 2021 and Excel 365, can accomplish the task with the XLOOKUP function.

For example, the following formulas compare the product names in columns D against the names in column A and pull a corresponding sales figure from column B if a match is found, otherwise the #N/A error is returned.

=VLOOKUP(D2, $A$2:$B$6, 2, FALSE)

=INDEX($B$2:$B$6, MATCH($D2, $A$2:$A$6, 0))

=XLOOKUP(D2, $A$2:$A$6, $B$2:$B$6)Excel: Compare two columns for matches and differences (8)

For more information, please see How to compare two columns using VLOOKUP.

If you don't feel very comfortable with formulas, you can have the job done using a fast and intuitive solution - Merge Tables Wizard.

Compare two lists and highlight matches and differences

When you compare columns in Excel, you may want to "visualize" the items that are present in one column but missing in the other. You can shade such cells in any color of your choosing by using the Excel Conditional Formatting feature and the following examples demonstrate the detailed steps.

Example 1. Highlight matches and differences in each row

To compare two columns and Excel and highlight cells in column A that have identical entries in column B in the same row, do the following:

  • Select the cells you want to highlight (you can select cells within one column or in several columns if you want to color entire rows).
  • Click Conditional formatting > New Rule… > Use a formula to determine which cells to format.
  • Create a rule with a simple formula like =$B2=$A2 (assuming that row 2 is the first row with data, not including the column header). Please double check that you use a relative row reference (without the $ sign) like in the formula above.
Excel: Compare two columns for matches and differences (9)

To highlight differences between column A and B, create a rule with this formula:

=$B2<>$A2Excel: Compare two columns for matches and differences (10)

If you are new to Excel conditional formatting, please see How to create a formula-based conditional formatting rule for step-by-step instructions.

Example 2. Highlight unique entries in each list

Whenever you are comparing two lists in Excel, there are 3 item types that you can highlight:

  • Items that are only in the 1st list (unique)
  • Items that are only in the 2nd list (unique)
  • Items that are in both lists (duplicates) - demonstrated in the next example.

This example demonstrates how to color the items that are only in one list.

Supposing your List 1 is in column A (A2:A6) and List 2 in column C (C2:C5). You create the conditional formatting rules with the following formulas:

Highlight unique values in List 1 (column A):

=COUNTIF($C$2:$C$5, $A2)=0

Highlight unique values in List 2 (column C):

=COUNTIF($A$2:$A$6, $C2)=0

And get the following result:Excel: Compare two columns for matches and differences (11)

Example 3. Highlight matches (duplicates) between 2 columns

If you closely followed the previous example, you won't have difficulties adjusting the COUNTIF formulas so that they find the matches rather than differences. All you have to do is to set the count greater than zero:Excel: Compare two columns for matches and differences (12)

Highlight matches in List 1 (column A):

=COUNTIF($C$2:$C$5, $A2)>0

Highlight matches in List 2 (column C):

=COUNTIF($A$2:$A$6, $C2)>0

Highlight row differences and matches in multiple columns

When comparing values in several columns row-by-row, the quickest way to highlight matches is creating a conditional formatting rule, and the fastest way to shade differences is embracing the Go To Special feature, as demonstrated in the following examples.

Example 1. Compare multiple columns and highlight row matches

To highlight rows that have identical values in all columns, create a conditional formatting rule based on one of the following formulas:

=AND($A2=$B2, $A2=$C2)

or

=COUNTIF($A2:$C2, $A2)=3

Where A2, B2 and C2 are the top-most cells and 3 is the number of columns to compare.Excel: Compare two columns for matches and differences (13)

Of course, neither AND nor COUNTIF formula is limited to comparing only 3 columns, you can use similar formulas to highlight rows with the same values in 4, 5, 6 or more columns.

Example 2. Compare multiple columns and highlight row differences

To quickly highlight cells with different values in each individual row, you can use Excel's Go To Special feature.

  1. Select the range of cells you want to compare. In this example, I've selected cells A2 to C8.Excel: Compare two columns for matches and differences (14)

    By default, the top-most cell of the selected range is the active cell, and the cells from the other selected columns in the same row will be compared to that cell. As you can see in the screenshot above, the active cell is white while all other cells of the selected range are highlighted. In this example, the active cell is A2, so the comparison column is column A.

    To change the comparison column, use either the Tab key to navigate through selected cells from left to right, or the Enter key to move from top to bottom.

    Tip. To select non-adjacent columns, select the first column, press and hold Ctrl, and then select the other columns. The active cell will be in the last column (or in the last block of adjacent columns). To change the comparison column, use the Tab or Enter key as described above.

  2. On the Home tab, go to Editing group, and click Find & Select > Go To Special… Then select Row differences and click the OK button.Excel: Compare two columns for matches and differences (15)
  3. The cells whose values are different from the comparison cell in each row are colored. If you want to shade the highlighted cells in some color, simply click the Fill Color icon on the ribbon and select the color of your choosing.Excel: Compare two columns for matches and differences (16)

How to compare two cells in Excel

In fact, comparing 2 cells is a particular case of comparing two columns in Excel row-by-row except that you don't have to copy the formulas down to other cells in the column.

For example, to compare cells A1 and C1, you can use the following formulas.

For matches:

=IF(A1=C1, "Match", "")

For differences:

=IF(A1<>C1, "Difference", "")

To learn a few other ways to compare cells in Excel, please see:

  • How to compare two strings in Excel
  • Check if two cells match or multiple cells are equal

Formula-free way to compare two columns / lists in Excel

Now that you know Excel's offerings for comparing and matching columns, let me show you our own solution for this task. This tool is named Compare Two Tables and it is included in our Ultimate Suite.

The add-in can compare two tables or lists by any number of columns and both identify matches/differences (as we did with formulas) and highlight them (as we did with conditional formatting).

For the purpose of this article, we'll be comparing the following 2 lists to find common values that are present in both.Excel: Compare two columns for matches and differences (17)

To compare two lists, here are the steps you need to follow:

  1. Start with clicking the Compare Tables button on the Ablebits Data tab.Excel: Compare two columns for matches and differences (18)
  2. Select the first column/list and click Next. In terms of the add-in, this is your Table 1.Excel: Compare two columns for matches and differences (19)
  3. Select the second column/list and click Next. In terms of the add-in, it is your Table 2, and it can reside in the same or different worksheet or even in another workbook.Excel: Compare two columns for matches and differences (20)
  4. Choose what kind of data to look for:
    • Duplicate values (matches) - the items that exist in both lists.
    • Unique values (differences) - the items that are present in list 1, but not in list 2.

    Since our aim is to find matches, we select the first option and click Next.Excel: Compare two columns for matches and differences (21)

  5. This is the key step where you select the columns for comparison. In our case, the choice is obvious as we are only comparing 2 columns: 2000 Winners against 2021 Winners. In bigger tables, you can select several column pairs to compare by.Excel: Compare two columns for matches and differences (22)
  6. In the final step, you choose how to deal with the found items and click Finish.

    A few different options are available here. For our purposes, these two are most useful:

    • Highlight with color - shades matches or differences in the selected color (like Excel conditional formatting does).
    • Identify in the Status column - inserts the Status column with the "Duplicate" or "Unique" labels (like IF formulas do).

For this example, I've decided to highlight duplicates in the following color:Excel: Compare two columns for matches and differences (23)

And in a moment, got the following result:Excel: Compare two columns for matches and differences (24)

With the Status column, the result would look as follows:Excel: Compare two columns for matches and differences (25)

Tip. If the lists you are comparing are in different worksheets or workbooks, it might be helpful to view Excel sheets side by side.

This is how you compare columns in Excel for matches (duplicates) and differences (unique values). If you are interested to try this tool, you are welcome to download an evaluation version using the below link.

I thank you for reading and encourage you to check out other helpful tutorials that we have :)

Available downloads

Compare Excel Lists - examples (.xlsx file)
Ultimate Suite - trial version (.exe file)

You may also be interested in

  • How to identify duplicates in Excel: find, count, filter, and more
  • How to highlight duplicate cells and rows in Excel
  • How to find and highlight duplicate cells in Excel
  • How to remove duplicates in Excel
  • How to remove the same text/words within a cell
Excel: Compare two columns for matches and differences (2024)

FAQs

How do you compare two columns in Excel for matches using if statement? ›

IF Formula: =IF(A2=B2,”Match”,” ”)

Using the IF formula, we will compare two columns in Excel, columns A and B. We will be using the formula: “=IF(A2=B2, “Same car brands,” “Different car brands”).” If the values match, this formula will return “Same car brands” for every “true” value.

How do you compare two columns in Excel and extract differences? ›

When comparing two columns in Excel, one method is to select both columns of data, select Home → Find & Select → Go To Special → Row Differences, and click OK. The matching data cells across the columns' rows are white, and unmatched cells appear in gray.

How do you compare two lists in Excel for matches? ›

Use the formula “=IF(A1=B1, “Match”,”Not a match”)" to test if the cell in A1 is the same as B1, replacing the references to match your own data. Press the “Enter” key or select another cell to apply the formula. Identify whether your cell reads “Match” or “Not a match”, depending on the data in cells A1 and B1.

Can I use VLOOKUP to compare two columns? ›

Let's say you have two columns with some textual or numeric values and you need to identify which values are present in both columns and which aren't. The VLOOKUP function will help you complete this task.

How do I compare two sets of data in Excel for differences? ›

To compare two Excel databases, you can utilize Conditional Formatting. Select the data range in the first database, go to Conditional Formatting > New Rule > Use a formula to determine which cells to format, and enter a formula like =A1<>B1. This will highlight differences between the two databases.

How do I compare two columns in sheets and find matches? ›

Compare Two Columns in Google Sheets to Find Missing Values Using FILTER and ISNA with MATCH
  1. Step 1: Enter the Formula. In an empty cell (e.g., C1), enter the formula: =FILTER(A:A, ISNA(MATCH(A:A, B:B, 0))).
  2. Step 2: Press Enter. Google Sheets will now display all values in Column A that do not have a match in Column B.
May 8, 2024

What is the formula to compare two columns in Excel? ›

How to compare data in two columns to find duplicates in Excel
  1. Start Excel.
  2. In a new worksheet, enter the following data as an example (leave column B empty): A. ...
  3. Type the following formula in cell B1: =IF(ISERROR(MATCH(A1,$C$1:$C$5,0)),"",A1)
  4. Select cell B1 to B5.
  5. Select Fill in the Editing group, and then select Down.

How do you compare two sheets in Excel and pull matching data? ›

One way to compare two Excel sheets for matching data is to use the INDEX MATCH formula method. This method allows you to compare the two sheets quickly and easily, without having to sort or filter the data.

What is the tool to compare two Excel files for differences? ›

If you have two workbooks open in Excel that you want to compare, you can run Spreadsheet Compare by using the Compare Files command. If you don't see the Inquire tab in Excel, see Turn on the Inquire add-in. To learn more about the tools in the Inquire add-in, see What you can do with Spreadsheet Inquire.

How to compare two tables in Excel for matches and differences? ›

Open the workbooks you want to compare. Go to the View tab, Window group, and click the View Side by Side button. That's it!

How to compare two files in Excel for matches and differences? ›

Compare Two Excel Sheets in Separate Excel Files (Side-by-Side)
  1. Open the files that you want to compare.
  2. In each file, select the sheet that you want to compare.
  3. Click the View tab.
  4. In the Windows group, click on the 'View Side by Side' option. This becomes available only when you have two or more Excel files open.

How to match two columns in Excel and return a value from another column? ›

Matching two columns and returning a third in Excel can be done with the VLOOKUP formula. This formula allows you to search for a value in one column and return the corresponding value from another column. This is a great way to compare two lists of data and find the matches between them.

How to compare two columns in Excel and highlight matches? ›

Compare Two Columns and Highlight Matches
  1. Select the entire data set.
  2. Click the Home tab.
  3. In the Styles group, click on the 'Conditional Formatting' option.
  4. Hover the cursor on the Highlight Cell Rules option.
  5. Click on Duplicate Values.
  6. In the Duplicate Values dialog box, make sure 'Duplicate' is selected.

How to do a VLOOKUP to find matches? ›

In its simplest form, the VLOOKUP function says: =VLOOKUP(What you want to look up, where you want to look for it, the column number in the range containing the value to return, return an Approximate or Exact match – indicated as 1/TRUE, or 0/FALSE).

How do I use VLOOKUP to find different values in two columns in Excel? ›

Excel VLOOKUP multiple columns syntax
  1. "lookup_value" – the value you want to look up vertically. ...
  2. lookup_range – the data range where to search the "lookup_value" and the matching value.
  3. {col1,col2,col3… ...
  4. To return the closest match, specify TRUE; to return the exact match, specify FALSE.

How do I compare two columns to find matched records in Excel? ›

How to compare data in two columns to find duplicates in Excel
  1. Start Excel.
  2. In a new worksheet, enter the following data as an example (leave column B empty): A. ...
  3. Type the following formula in cell B1: =IF(ISERROR(MATCH(A1,$C$1:$C$5,0)),"",A1)
  4. Select cell B1 to B5.
  5. Select Fill in the Editing group, and then select Down.

How to return a value if two cells match? ›

To compare two ranges cell-by-cell and return the logical value TRUE if all the cells in the corresponding positions match, supply the equally sized ranges to the logical test of the AND function: AND(range A = range B) That's how to use the If match formula in Excel.

Top Articles
Latest Posts
Article information

Author: Duncan Muller

Last Updated:

Views: 6100

Rating: 4.9 / 5 (59 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Duncan Muller

Birthday: 1997-01-13

Address: Apt. 505 914 Phillip Crossroad, O'Konborough, NV 62411

Phone: +8555305800947

Job: Construction Agent

Hobby: Shopping, Table tennis, Snowboarding, Rafting, Motor sports, Homebrewing, Taxidermy

Introduction: My name is Duncan Muller, I am a enchanting, good, gentle, modern, tasty, nice, elegant person who loves writing and wants to share my knowledge and understanding with you.