Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have 2 columns (First Name, Last Name) that I need to see if there are any
duplicates in the spreadsheet, and to flag them. John Smith <----Duplicate Jane Smith John H Smith John Smith <---- Duplicate Thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Easiest with 2 helper columns.
First helper (column C): =A2&B2 Second helper: =IF(COUNTIF(C:C,C2)1,"DUPLICATE","") Copy down as needed. -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "habelow1" wrote: I have 2 columns (First Name, Last Name) that I need to see if there are any duplicates in the spreadsheet, and to flag them. John Smith <----Duplicate Jane Smith John H Smith John Smith <---- Duplicate Thanks |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try the below formula in C1; and copy that down as required
=IF(SUMPRODUCT(--($A$1:$A$100=A1),--($B$1:$B$100=B1))1,"Duplicate","") If this post helps click Yes --------------- Jacob Skaria "habelow1" wrote: I have 2 columns (First Name, Last Name) that I need to see if there are any duplicates in the spreadsheet, and to flag them. John Smith <----Duplicate Jane Smith John H Smith John Smith <---- Duplicate Thanks |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() In two steps Concatenate cells A and B in column C through formula Concatenate (A1,B1) and drag down In column D (the flag column) =IF(COUNTIF(C:C,C1)1,"duplicate","") and drag down |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Compare 2 columns and align duplicates into same row | Excel Worksheet Functions | |||
Compare columns for duplicates | New Users to Excel | |||
Compare columns remove duplicates | Excel Discussion (Misc queries) | |||
Compare the 1st 9 digits in two columns looking for duplicates | Excel Worksheet Functions | |||
compare two columns and remove duplicates | Excel Worksheet Functions |