Dhimas AFanji
Dhimas AFanji

Reputation: 91

Excel Formula to Find Duplicate Value

I have an excel file with three columns (C,D,E) and one more (F) for finding all duplicate value. How can i use excel formula to get expected result (column F).

So the above columns should look like this:

Find Duplicate Value

Thank you in advance!

Upvotes: 1

Views: 346

Answers (1)

Hariharan G R
Hariharan G R

Reputation: 549

Try this formula in D2 cell and this is one way to get the output.

=IF(ISERROR(MATCH($A2,$B:$B,0)*MATCH($A2,$C:$C,0)),"",$A2)

enter image description here

Upvotes: 2

Related Questions