Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default How eliminate repeating data?

I have static data in a spreadsheet column that repeats so I only want
to show the first occurrence of the repeating data in the column. I'm
looking for a way to do this (macro, formula, conditional formatting).
Example: Column COL1 (below) has repeating data in it. I want the
spreadsheet to show just the first BLVD#4 and the first BLVD#8 with
blanks/spaces for teh repeating data.
================================
COL1

BLVD #4
BLVD #4
BLVD #4
BLVD #8
BLVD #8
BLVD #8
BLVD #8
R. MELENDEZ

Should instead be like this:

COL1

BLVD #4


BLVD #8



R.MELENDEZ
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 25
Default How eliminate repeating data?

What I'd do - and this may or may not work for you - is have this in
conditional formatting for cell A2:

=A2=A1

and then set the format to the font colour the same as the background
colour. You can then copy this format to the rest of the list (addresses
will adjust)
Sian

"Wally" wrote:

I have static data in a spreadsheet column that repeats so I only want
to show the first occurrence of the repeating data in the column. I'm
looking for a way to do this (macro, formula, conditional formatting).
Example: Column COL1 (below) has repeating data in it. I want the
spreadsheet to show just the first BLVD#4 and the first BLVD#8 with
blanks/spaces for teh repeating data.
================================
COL1

BLVD #4
BLVD #4
BLVD #4
BLVD #8
BLVD #8
BLVD #8
BLVD #8
R. MELENDEZ

Should instead be like this:

COL1

BLVD #4


BLVD #8



R.MELENDEZ

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 62
Default How eliminate repeating data?

Method #1:
Assuming your data is in column A beginning in row 1, enter the following in
B1 and copy down:
=IF(COUNTIF($A$1:$A1,A1)=1,A1,""
That will give you the answer shown in your question with blank rows for
duplicates.

Method #2:
Extract the unique entries to a separate part of the spreadsheet with Data -
Filter - Advanced Filter and specify unique records only. You'll need to
have a column header row for the field, criteria, and output column. That
will give you a list of unique values in column A with no blank rows.

"Wally" wrote:

I have static data in a spreadsheet column that repeats so I only want
to show the first occurrence of the repeating data in the column. I'm
looking for a way to do this (macro, formula, conditional formatting).
Example: Column COL1 (below) has repeating data in it. I want the
spreadsheet to show just the first BLVD#4 and the first BLVD#8 with
blanks/spaces for teh repeating data.
================================
COL1

BLVD #4
BLVD #4
BLVD #4
BLVD #8
BLVD #8
BLVD #8
BLVD #8
R. MELENDEZ

Should instead be like this:

COL1

BLVD #4


BLVD #8



R.MELENDEZ

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 62
Default How eliminate repeating data?

Corrects formula for typo:
=IF(COUNTIF($A$1:$A1,A1)=1,A1,"")
Sorry.

"MrAcquire" wrote:

Method #1:
Assuming your data is in column A beginning in row 1, enter the following in
B1 and copy down:
=IF(COUNTIF($A$1:$A1,A1)=1,A1,""
That will give you the answer shown in your question with blank rows for
duplicates.

Method #2:
Extract the unique entries to a separate part of the spreadsheet with Data -
Filter - Advanced Filter and specify unique records only. You'll need to
have a column header row for the field, criteria, and output column. That
will give you a list of unique values in column A with no blank rows.

"Wally" wrote:

I have static data in a spreadsheet column that repeats so I only want
to show the first occurrence of the repeating data in the column. I'm
looking for a way to do this (macro, formula, conditional formatting).
Example: Column COL1 (below) has repeating data in it. I want the
spreadsheet to show just the first BLVD#4 and the first BLVD#8 with
blanks/spaces for teh repeating data.
================================
COL1

BLVD #4
BLVD #4
BLVD #4
BLVD #8
BLVD #8
BLVD #8
BLVD #8
R. MELENDEZ

Should instead be like this:

COL1

BLVD #4


BLVD #8



R.MELENDEZ

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default How eliminate repeating data?

Thank you!
Walter
"MrAcquire" wrote in message
...
Corrects formula for typo:
=IF(COUNTIF($A$1:$A1,A1)=1,A1,"")
Sorry.

"MrAcquire" wrote:

Method #1:
Assuming your data is in column A beginning in row 1, enter the following
in
B1 and copy down:
=IF(COUNTIF($A$1:$A1,A1)=1,A1,""
That will give you the answer shown in your question with blank rows for
duplicates.

Method #2:
Extract the unique entries to a separate part of the spreadsheet with
Data -
Filter - Advanced Filter and specify unique records only. You'll need to
have a column header row for the field, criteria, and output column.
That
will give you a list of unique values in column A with no blank rows.

"Wally" wrote:

I have static data in a spreadsheet column that repeats so I only want
to show the first occurrence of the repeating data in the column. I'm
looking for a way to do this (macro, formula, conditional formatting).
Example: Column COL1 (below) has repeating data in it. I want the
spreadsheet to show just the first BLVD#4 and the first BLVD#8 with
blanks/spaces for teh repeating data.
================================
COL1

BLVD #4
BLVD #4
BLVD #4
BLVD #8
BLVD #8
BLVD #8
BLVD #8
R. MELENDEZ

Should instead be like this:

COL1

BLVD #4


BLVD #8



R.MELENDEZ


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
How can I eliminate rows that contain the same data as the row ab. mjlucas49 Excel Discussion (Misc queries) 2 July 5th 08 12:56 PM
eliminate data entry of counts by state redhead New Users to Excel 3 February 2nd 08 04:02 AM
How do I eliminate a legend title for one of my data sets? Frank P Florida Charts and Charting in Excel 2 December 1st 06 05:05 PM
Eliminate empty cells in data range Stephen Excel Discussion (Misc queries) 1 April 2nd 05 04:00 AM
macro to eliminate repeating account numbers Sarah New Users to Excel 2 March 16th 05 11:11 PM


All times are GMT +1. The time now is 10:01 PM.

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"