Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
How do i get rid of duplicate entries in a spreadsheet?
|
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Visit Chip's site http://www.cpearson.com/excel/Duplicates.aspx where there
is lots about duplicates best wishes -- Bernard V Liengme Microsoft Excel MVP www.stfx.ca/people/bliengme remove caps from email "Martha" wrote in message ... How do i get rid of duplicate entries in a spreadsheet? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
see Chip Pearson's article:
http://www.cpearson.com/excel/Duplicates.aspx "Martha" wrote: How do i get rid of duplicate entries in a spreadsheet? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
There are several things you can do. Two option are listed below:
#1) Sub CheckForDupes() Dim RowNdx As Long Dim ColNum As Integer ColNum = Selection(1).Column 'set number to match the proper column For RowNdx = Selection(Selection.Cells.Count).Row To _ Selection(1).Row + 1 Step -1 If Cells(RowNdx, ColNum).Value = Cells(RowNdx - 1, ColNum).Value Then Cells(RowNdx, ColNum).Delete shift:=xlUp End If Next RowNdx End Sub #2) Select Range Data Filter Advanced Filter Copy to Another Location (choose your location) Unique Records Only Ok Regards, Ryan-- -- RyGuy "Martha" wrote: How do i get rid of duplicate entries in a spreadsheet? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Need value for spread sheet | Excel Worksheet Functions | |||
create a macro to search an excel spread for duplicates | Excel Worksheet Functions | |||
how do i enter a bull call spread into the options spread sheet ? | Excel Worksheet Functions | |||
how to do a spread sheet | Excel Worksheet Functions | |||
spread sheet | Excel Worksheet Functions |