Distilling a list

dcxkraze

New Member
Joined
Oct 20, 2005
Messages
12
Is there a way to boil down a list and get rid of duplicates w/o macros.

For example: Column A has 100 entries. There are only 30 unique entries with many duplicates. How could you show only the unique list in Column A (starting at row 101) or in Column B?

Is this feasible w/o macros or pivot tables?

Best,

Brandon
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
This is directly taken from the VBA Macros CD available on this website (I do not take the credit). It will put the new data on the 2nd sheet.

<font face=Courier New><SPAN style="color:#00007F">Sub</SPAN> CopyingWithoutDoubled()
   <SPAN style="color:#00007F">Dim</SPAN> wks <SPAN style="color:#00007F">As</SPAN> Worksheet
   <SPAN style="color:#00007F">Dim</SPAN> rngFind <SPAN style="color:#00007F">As</SPAN> Range
   <SPAN style="color:#00007F">Dim</SPAN> intRow <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Integer</SPAN>, intCol <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Integer</SPAN>, intRowT <SPAN style="color:#00007F">As</SPAN> <SPAN style="color:#00007F">Integer</SPAN>
   <SPAN style="color:#00007F">Set</SPAN> wks = Worksheets("Sheet2")
   intRow = 1
   intCol = 1
   wks.Columns("A").ClearContents
   <SPAN style="color:#00007F">Do</SPAN> <SPAN style="color:#00007F">Until</SPAN> IsEmpty(Cells(intRow, intCol))
      <SPAN style="color:#00007F">Do</SPAN> <SPAN style="color:#00007F">Until</SPAN> IsEmpty(Cells(intRow, intCol))
         <SPAN style="color:#00007F">Set</SPAN> rngFind = wks.Columns(1).Find(Cells(intRow, intCol), _
            lookat:=xlWhole, LookIn:=xlValues)
         <SPAN style="color:#00007F">If</SPAN> rngFind <SPAN style="color:#00007F">Is</SPAN> <SPAN style="color:#00007F">Nothing</SPAN> <SPAN style="color:#00007F">Then</SPAN>
            intRowT = intRowT + 1
            wks.Cells(intRowT, 1).Value = Cells(intRow, intCol).Value
         <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN>
         intCol = intCol + 1
      <SPAN style="color:#00007F">Loop</SPAN>
      intRow = intRow + 1
      intCol = 1
   <SPAN style="color:#00007F">Loop</SPAN>
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN></FONT>
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,192
Members
449,072
Latest member
DW Draft

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