Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I have a list of e-mail addresses. I want to find all the duplicates. I have
sorted the list but the list is extremly long. I have not found an effective method for doing this. I want the result to show me where those duplicates occur. Can anyone help me? Thank you Ed |
#2
![]() |
|||
|
|||
![]()
Give this a try ..
Assuming the email list is in col A, A2 down Enter a label in B1 Put in B2: =IF(COUNTIF($A$2:A2,A2)1,"X","") Copy B2 down This will mark all duplicates in col A with "x" Do an autofilter in B1, select "X" -- Rgds Max xl 97 --- GMT+8, 1° 22' N 103° 45' E xdemechanik <atyahoo<dotcom ---- "Ed P" wrote in message ... I have a list of e-mail addresses. I want to find all the duplicates. I have sorted the list but the list is extremly long. I have not found an effective method for doing this. I want the result to show me where those duplicates occur. Can anyone help me? Thank you Ed |
#3
![]() |
|||
|
|||
![]()
Alternatively, instead of
Put in B2: =IF(COUNTIF($A$2:A2,A2)1,"X","") Copy B2 down If there's the possibility of whitespaces (invisible) within the email addresses in col A Put in B2: =IF(SUMPRODUCT((TRIM($A$2:A2)=TRIM(A2))*(TRIM(A2)< ""))1,"X","") Copy B2 down, as before -- Rgds Max xl 97 --- GMT+8, 1° 22' N 103° 45' E xdemechanik <atyahoo<dotcom ---- |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
space between text strings with concatenate | Excel Discussion (Misc queries) | |||
Compare cells/columns and highlight matching text strings | Excel Worksheet Functions | |||
Finding Partial Text in a Cell | Excel Worksheet Functions | |||
Putting text in a column based on variable text from another colum | Excel Discussion (Misc queries) | |||
Filter long Text strings | Excel Worksheet Functions |