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

[TABLE="width: 500"]
<tbody>[TR]
[TD]Occurence[/TD]
[TD]Post Dedup - Result[/TD]
[/TR]
[TR]
[TD]18002821376 || 18005675803 || 18002687708 || 18005675803


[/TD]
[TD]18002821376 || 18005675803 || 18002687708 || [/TD]
[/TR]
[TR]
[TD]18882733488 || 18667585678 || 18665543456 ||18882733488 || 18667585678 || 18665543456


[/TD]
[TD]18882733488 || 18667585678 || 18665543456[/TD]
[/TR]
</tbody>[/TABLE]


Thank you
 
Last edited:

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
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,223,227
Messages
6,170,848
Members
452,361
Latest member
d3ad3y3

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