Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
We run a very long product list in Excel which is prequently updated.
We need a formula that identifies and removes identical product names. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
'Mark aktual colum, run sub
Sub SletDubletter() Dim c, r, t, t2 c = ActiveCell.Column r = Cells(65500, c).End(xlUp).Row Range(Cells(1, c), Cells(65500, c).End(xlUp)).Select For t = 1 To r If Cells(t, c) < "" Then For t2 = t + 1 To r If Cells(t, c) = Cells(t2, c) Then Cells(t2, c) = "" End If Next End If Next Selection.Sort Key1:=Range(ActiveCell.Address), Order1:=xlAscending ActiveCell.Select End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do I find out how many name i have in a list of names | Excel Discussion (Misc queries) | |||
Find a group of names in a long list | Excel Discussion (Misc queries) | |||
list 1 has 400 names List 2 has 4000. find manes from list 1 on 2 | Excel Worksheet Functions | |||
How do I find a name in a list of names? | Excel Worksheet Functions | |||
find names on list 1 in list 2. list 1 4000 names list 2 400 name | Excel Worksheet Functions |