How to find duplicate values in multiple columns in Excel 2016?

There are times when we might have to compare more than one column to find if there are any repeated data. For example , I have the list of actors in the column A and column B and I want to list out all the actors names that are found in both the columns.

How to find duplicate values in multiple columns in Excel 2016?

Assuming that the column A and B contains the list of actors and you need to display the duplicate entries or the names of the actors appearing in both the columns in the Column C.

In the cell C1 , enter the following formula

=IF(ISERROR(MATCH(A1,$B$1:$B$13,0)),””,A1)

The formula simply matches the value from cell A1 with the range of cells from B1 to B13 and displays the empty text if it does not exist in both columns , else displays the cell value.

image

Leave A Reply

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

You May Also Like

In this post, you’ll learn how to Find Blank cells in excel so that you can remove or delete the blank cells form...
In this article, you’ll learn what is a Gauge Chart in Microsoft Excel. Also, you will learn how to add...
Microsoft Excel provides a shortcut for the users to move columns in excel using two different ways – using Shift...