Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 65
Default Delete Repeated Data?

I have a column of numbers such as:
190.000
190.000
194.000
580.000
910.000
910.111
910.130
I want to delete the numbers that are repeated.

What is the best way to accomplish this?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,805
Default Delete Repeated Data?

If you have your numbers in Col A then enter this formula in B1 and copy down
till end of your data set..
=IF(COUNTIF($A$1:A1,A1)=1,A1,"")

It will replace duplicate numbers with blank except for the first occurence.

"evoxfan" wrote:

I have a column of numbers such as:
190.000
190.000
194.000
580.000
910.000
910.111
910.130
I want to delete the numbers that are repeated.

What is the best way to accomplish this?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 65
Default Delete Repeated Data?

I must be doing something wrong.

This is the formula I entered. =IF(COUNTIF($R$6:R533,R6)=1,R6,"")

The result is a blank; it does not show the first occurrence.

How can I correct?


"Sheeloo" wrote:

If you have your numbers in Col A then enter this formula in B1 and copy down
till end of your data set..
=IF(COUNTIF($A$1:A1,A1)=1,A1,"")

It will replace duplicate numbers with blank except for the first occurence.

"evoxfan" wrote:

I have a column of numbers such as:
190.000
190.000
194.000
580.000
910.000
910.111
910.130
I want to delete the numbers that are repeated.

What is the best way to accomplish this?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,805
Default Delete Repeated Data?

Use
=IF(COUNTIF($R$6:R6,R6)=1,R6,"")

and copy down till R533 (when you copy down R6 will change to R7, R8 and so
on)

For the current row, it counts the number of times the value in Col B for
that Row occurs from R6 till current row, and replaces it with "" if the
count is more than 1.
"evoxfan" wrote:

I must be doing something wrong.

This is the formula I entered. =IF(COUNTIF($R$6:R533,R6)=1,R6,"")

The result is a blank; it does not show the first occurrence.

How can I correct?


"Sheeloo" wrote:

If you have your numbers in Col A then enter this formula in B1 and copy down
till end of your data set..
=IF(COUNTIF($A$1:A1,A1)=1,A1,"")

It will replace duplicate numbers with blank except for the first occurence.

"evoxfan" wrote:

I have a column of numbers such as:
190.000
190.000
194.000
580.000
910.000
910.111
910.130
I want to delete the numbers that are repeated.

What is the best way to accomplish this?

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
Delete in row C if it is repeated in row D calibansfolly Excel Worksheet Functions 3 July 31st 07 10:39 PM
delete repeated data in excel Alex Excel Discussion (Misc queries) 2 May 5th 07 11:04 PM
Delete repeated Cells Mosqui Excel Worksheet Functions 2 September 13th 05 01:31 AM
delete repeated numbers Labman Excel Worksheet Functions 1 September 10th 05 07:34 PM
Delete repeated numbers in Excel Labman Excel Worksheet Functions 1 September 10th 05 02:24 PM


All times are GMT +1. The time now is 07:42 PM.

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

About Us

"It's about Microsoft Excel"