Excel formula to compare two columns and return a value (5 examples)

In this article, I will show you several techniques of using Excel formula to compare two columns for matches and return a value. Your necessity might be different, so I will show several scenarios in my article.

Check out the scenarios and the relevant Excel formulas.

1) Compare two columns and return value from third column (using VLOOKUP formula)

In the following spreadsheet, you are seeing a list of some Projects and their Managers. In cell D2, the Project coordinator might input a Project name and want to see who the Manager of the Project is.

Excel formula to compare two columns and return a value

Input this formula in cell <code>E2: =IFERROR(VLOOKUP(D2,project_manager,2,FALSE), “Not Assigned”)

Excel formula to compare two columns and return a value

How does this formula work?

To understand this formula, you have to know the syntax of IFERROR and VLOOKUP Excel functions.

Take a look at the following image. If you observe the image carefully, you will find that the formula is actually self-explanatory.

Excel formula to compare two columns and return a value image 3

If you don’t know how Excel’s VLOOKUP formula works, then give it a revision (from the image below)

Excel VLOOKUP function

Read More: How to Match Two Columns and Return a Third in Excel

2) Compare two columns and return value from the third column (using INDEX and MATCH functions)

We shall work again with the same data but this time we shall use this formula in cell <code>E2: =IFERROR(INDEX(B2:B16, MATCH(D2,A2:A16,0)), “”)

Excel formula to compare two columns and return a value Image 4

This time if no matching is found, the cell will show blank as the IFERROR function’s value_if_error argument is blank.

How does the formula work?

Check out the following image.

Excel formula to compare two columns and return a value Image 5

These are the steps to analyze the above formula:

  • Step 1: Match function returns the relative position of lookup_value D2. Say, the value is DD. It will return 4 as DD is in 4th position in the lookup_array $A$2:$A$16. If no matching was found, the MATCH function would return an error value.
  • Step 2: INDEX function searches for the 4th value in the array $B$2:$B$16. And it finds value, John. So, for this example, the INDEX function will return the value, John.
  • Step 3: IFERROR function finds a valid value for its value So, it will return the value. If it would find an error value, then it would return a blank.

I hope you got how this formula works. Always try to break down a complex formula into pieces to make it easy.

Read More: How to Count Matches in Two Columns in Excel (5 Easy Ways)

3) Two columns lookup

This is another scenario. You have a worksheet like the following image.

You want to conduct a lookup on the table to match two different values from two columns. If matching is found, it will return data from the 3rd column.

You cannot perform two columns lookup with regular Excel formulas. You have to use an Array formula.

Input this formula in cell <code>F4: {=INDEX(C2:C11,MATCH(F2&F3, A2:A11&B2:B11,0))}

At first, input the above formula in cell F4 without the curly braces

Excel formula to compare two columns and return a value Image 6

Then press CTRL + SHIFT + ENTER on your keyboard. You will get the formula is input as an array formula.

Excel formula to compare two columns and return a value Image 7

How does this array formula work?

At first, let’s understand the Match function part.

You can imagine this array formula as a series of the following formulas:

  • MATCH(F2&F3, A2&B2,0)
  • MATCH(F2&F3, A3&B3,0)
  • MATCH(F2&F3, A4&B4,0)
  • … … …
  • … … …
  • MATCH(F2&F3, A11&B11,0)

This series will be stored in Excel memory as <code>MATCH (JamesSmith, {“MarissaMayer”; “MarissaAhmed”; “MarissaKawser”; “ArissaAhmed”; “ArissaKawser”; “JamesClark”; “JamesSmith”; “JohnWalker”; “JohnReed”; “JohnLopez”}, 0)

From the above MATCH function, what will be returned? MATCH function will return 7 as JamesSmith is found at position 7 of the array.

The rest is simple. In the array of C2:C11, the 7th position is value 210745. So, the overall function returns 210745 in cell F4.

If you fail to understand how this array formula works: check out my link.

Read More: How to Compare Text Between Two Cells in Excel (10 Methods)


Similar Readings


4) Compare two columns and list differences in the third column

This is another scenario. You are seeing a worksheet below. There are two lists. What I want are:

  • Compare the two lists
  • Show the values of List 2 under a new column but without the values that are also in List 1

We use this formula in cell <code>C2: =IF(ISNA(MATCH(B2, $A$2:$A$8,0)),B2, “”)

And then copy it for other cells in the column. We get the following results as shown in the figure below. You are seeing only those List 2 values are showing in the new column that is not in the List 1.

Excel formula to compare two columns and return a value Image 8

How does this formula work?

When you analyze a complex formula, start with the function that does not have any other functions in it. In this formula, that is the MATCH function.

Excel formula to compare two columns and return a value Image 9

Let’s break down the formula into pieces:

  • Match function will search for cell value B2 in the range $A$2:$A$8. If it finds a match, it will return the position of the value, otherwise, it will return the #N/A. Value 600 of cell B2 is not found anywhere on the list. So, the Match function will return the #N/A error.
  • ISNA function returns TRUE if it finds the #N/A error, otherwise, it will return a FALSE In this case, ISNA will return TRUE value as Match function returns #N/A error.
  • When ISNA function returns a TRUE value, IF function’s value_if_true argument will be returned and it is B2, the value of B2 is 600. So, this formula will return 600 as a value.

Read More: How to Compare Two Lists and Return Differences in Excel

5) Compare two columns row by row

You might also want to compare two columns row by row like the following image.

Excel formula to compare two columns and return a value Image 10

We have used this formula in cell <code>C2: =IF(A2=B2, “Matched”, “Not Matched”)

This is a straightforward Excel IF function. If the cells A2 and B2 are the same, “Matched” value will show in cell C2 and if the cells A2 and B2 are not the same, then the “Not Matched” value will show as the output.

This comparison is case-insensitive. “Milk” and “milk” are treated as the same in this comparison.

We can use the EXACT function to find the exactly matched values. Just change the formula like this: =IF(EXACT(A2,B2), "Matched", "Not Matched")

Excel formula to compare two columns and return a value Image 11

You see now “Milk” and “milk” are treated differently. They are not the same.

Here is the syntax of the EXACT function. It takes two text values as arguments, if they are case-sensitively exact, the function returns the TRUE value, otherwise, the function returns the FALSE value.

EXACT (text1, text2)

Read More: How to Compare Text in Two Columns in Excel

Download the working file

So, these are my ways of comparing two columns in Excel and return a value based on the comparison. Do you know any other better techniques? Let me know in the comment box. I am eager to update this article.


Further Readings

Get FREE Advanced Excel Exercises with Solutions!
Kawser Ahmed
Kawser Ahmed

Kawser Ahmed is a Microsoft Excel Expert, Udemy Course Instructor, Data Analyst, Finance professional, and Chief Editor of ExcelDemy. He is the founder and CEO of SOFTEKO (a software and content marketing company). He has a B.Sc in Electrical and Electronics Engineering. As a Udemy instructor, he offers 8 acclaimed Excel courses, one selected for Udemy Business. A devoted MS Excel enthusiast, Kawser has contributed over 200 articles and reviewed thousands more. His expertise extends to Data Analysis,... Read Full Bio

10 Comments
  1. Thank you very much. First of all, sorry for my bad english, than i want to congrats you for this lection and you have made in me one of the fan of your blog.

  2. Very clearly explained. This was a great help!

  3. Thanks a lot, I liked your lesson, and liked your way of explaining (how does this formula work?) I like it so much. Thanks again.

  4. Thank you for this comprehensive and useful tutorial 🙂

  5. Thank you! Thank you! Thank you! Your formula: “3) Two Columns Lookup” solved a very complex problem for me. It also has automated a process that has been taking me quite a long time to do manually! Your examples made it very clear as to what I needed to do!

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo