Remove Duplicates within each row

Angiec50

New Member
Joined
Oct 8, 2009
Messages
29
I have a spreadsheet that has the user name in one column and then their relevant applications in the adjoining columns ie.

Column A Column B Column C Column D
User Name App1 App2 App3 etc
HP0505 Word Silverlight Lotus Notes etc
HP0606 Winzip Winzip Word

My task is to remove any duplicate apps for each user. I.e. to run through each row and remove any duplicate items.

Can anyone help with some code please :confused:

Thank in advance for your help
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Try with a copy of your sheet

Code:
Sub Test2()
Dim LR As Long, LC As Long, i As Long, j As Long
LR = Cells.Find(What:="*", SearchDirection:=xlPrevious, SearchOrder:=xlByRows).Row
For i = 2 To LR
    LC = Rows(i).Find(What:="*", SearchDirection:=xlPrevious, SearchOrder:=xlByColumns).Column
    For j = LC To 3 Step -1
        If WorksheetFunction.CountIf(Rows(i), Cells(i, j).Value) > 1 Then Cells(i, j).Delete shift:=xlShiftToLeft
    Next j
Next i
End Sub
 
Upvote 0

Forum statistics

Threads
1,223,904
Messages
6,175,295
Members
452,631
Latest member
a_potato

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