Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 32
Default Duplicates in a spread sheet

How do i get rid of duplicate entries in a spreadsheet?

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,393
Default Duplicates in a spread sheet

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,081
Default Duplicates in a spread sheet

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   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,836
Default Duplicates in a spread sheet

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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Need value for spread sheet [email protected] Excel Worksheet Functions 2 April 28th 07 11:43 PM
create a macro to search an excel spread for duplicates jamalin Excel Worksheet Functions 4 February 16th 07 10:58 AM
how do i enter a bull call spread into the options spread sheet ? alvin smith Excel Worksheet Functions 0 November 27th 06 01:23 AM
how to do a spread sheet olajune1 Excel Worksheet Functions 2 November 4th 05 04:56 PM
spread sheet crix411 Excel Worksheet Functions 2 April 9th 05 03:42 PM


All times are GMT +1. The time now is 07:54 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"