You can use an AutoFilter to remove the items that are duplicates:
1. Assuming your list is in cells A2:100, add a heading in cell A1,
e.g. Items
2. In cell B1, add a heading, e.g. Dups
3. In cell B2, enter a formula that counts each item in column A:
=IF(COUNTIF($A$2:$A$100,A2)>1,"X","")
4. Copy the formula down to row 100
5. Select a cell in the table, and choose Data>Filter>AutoFilter
6. From the dropdown in cell B1, choose X
7. Select and delete the visible rows
8. To remove the AutoFilter, choose Data>Filter>AutoFilter
#4. The formula needs to be in every row.
Select B2:B100 using your mouse.
type that formula in: =IF(COUNTIF($A$2:$A$100,A2)>1,"X","")
(Adjust your selection (B2:Bxxxx) to match the number of rows you have
and adjust that formula to match that number)
1000 rows, select B2:b1000 and your formula will be:
=IF(COUNTIF($A$2:$A$1000,A2)>1,"X","")
#5. Select all of column B (slightly different from Deb's but equivalent)
then on the menubar, hit Data, then Filter, then Autofilter.
#6 You'll see a little dropdown arrow in B1. Click on it. Select X.
You'll see a change to your worksheet--only the duplicates will be
showing.
#7 Use your mouse to select the first visible cell under B1 through the
last visible cell in column B
rightclick on any of those selected cells.
Click Delete.
Click entirerow
#8 Back to the menubar and hit Data, then filter, then autofilter
to remove the filtered view.
This is a pretty useful technique for getting rid of lots of stuff (autofilter,
that is). It'll be good to learn and use a few times.