Duplicate Value comparing 2 Columns

TWINKLEMARVEL

Board Regular
Joined
Sep 24, 2008
Messages
101
Dear Experts,

Can anyone help me in finding the duplicate value by comparing 2 columns.

Eg:

Column AColumn B
Installation123456
Warranty111111
Installation123456
Installation654654
AMC582369
Warranty111111
OG789654
AMC154689
OG123123

<tbody>
</tbody>

Need a formula in Column C Such that it compares,

Installation With Same Serial No,
Warranty with Same Serial No,
AMC with same Serial.No
OG with same Serial No
etc... like above.
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
something like...

Excel 2012
ABC
1Installation123456unique
2Warranty111111unique
3Installation123456duplicate
4Installation654654unique
5AMC582369unique
6Warranty111111duplicate
7OG789654unique
8AMC154689unique
9OG123123unique

<colgroup><col style="width: 25pxpx"><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet3

Worksheet Formulas
CellFormula
C1=IF(COUNTIFS($A$1:A1,A1,$B$1:B1,B1)>1,"duplicate","unique")

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0

Weazel
Perfect. This is what I was expecting.

Thanks a lot.



something like...

Excel 2012
ABC
1Installation123456unique
2Warranty111111unique
3Installation123456duplicate
4Installation654654unique
5AMC582369unique
6Warranty111111duplicate
7OG789654unique
8AMC154689unique
9OG123123unique

<tbody>
</tbody>
Sheet3

Worksheet Formulas
CellFormula
C1=IF(COUNTIFS($A$1:A1,A1,$B$1:B1,B1)>1,"duplicate","unique")

<tbody>
</tbody>

<tbody>
</tbody>
 
Upvote 0

Forum statistics

Threads
1,214,593
Messages
6,120,434
Members
448,961
Latest member
nzskater

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