Find Duplicate values with corresponding values.

srizki

Well-known Member
Joined
Jan 14, 2003
Messages
1,857
Office Version
  1. 365
Platform
  1. Windows
Hi all,
I am looking for a formula. I have values in column A and corresponding values in column B, I want to find out if the duplicate exists with the two cells. For example, if I have.
[TABLE="width: 128"]
<tbody>[TR]
[TD]62017000
[/TD]
[TD]8015064
[/TD]
[/TR]
[TR]
[TD]52017000
[/TD]
[TD]8192746
[/TD]
[/TR]
[TR]
[TD]62017000
[/TD]
[TD]8192746
[/TD]
[/TR]
[TR]
[TD]52017000
[/TD]
[TD]8192747
[/TD]
[/TR]
[TR]
[TD]62017000
[/TD]
[TD]8192747
[/TD]
[/TR]
[TR]
[TD]32017000
[/TD]
[TD]8214224
[/TD]
[/TR]
[TR]
[TD]32017000
[/TD]
[TD]8214224
[/TD]
[/TR]
[TR]
[TD]62017000
[/TD]
[TD]8214225
[/TD]
[/TR]
[TR]
[TD]32017000
[/TD]
[TD]8214226
[/TD]
[/TR]
</tbody>[/TABLE]

The underlined (italic) values are duplicate.

Thanks
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Try something like this

Formula in C1 copied down
=IF(COUNTIFS(A:A,A1,B:B,B1)>1,"Duplicate","")

Hope this helps

M.
 
Upvote 0
Thank you Marcelo,
I was using,
=IF(SUMPRODUCT($A$6:A6=A6)*($B$6:B6=B6)>1,"Duplicate","okay")
That did not work.

Cheers.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,162
Messages
6,170,432
Members
452,326
Latest member
johnshaji

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top