Remove Duplicates with in a column

Blessy Clara

Board Regular
Joined
Mar 28, 2010
Messages
201
Hi

I have an excel sheet - Column A contains Phone Numbers separated by a "||" Symbol -
Requirement - I want to remove the repeat occurrence of a number with in a cell and retain only one occurrence

OccurencePost Dedup - Result
18002821376 || 18005675803 || 18002687708 || 18005675803


18002821376 || 18005675803 || 18002687708 ||
18882733488 || 18667585678 || 18665543456 ||18882733488 || 18667585678 || 18665543456


18882733488 || 18667585678 || 18665543456

<tbody>
</tbody>


Thank you
 
Last edited:

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
How about
Code:
Sub BlessyClara()
   Dim Cl As Range
   Dim Sp As Variant
   Dim i As Long
   
   With CreateObject("scripting.dictionary")
      For Each Cl In Range("A2", Range("A" & Rows.Count).End(xlUp))
         Sp = Split(Cl, "||")
         For i = 0 To UBound(Sp)
            .Item(Trim(Sp(i))) = Empty
         Next i
         Cl.Value = join(.Keys, "||")
         .RemoveAll
      Next Cl
   End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,788
Messages
6,121,580
Members
449,039
Latest member
Arbind kumar

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