Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 577
Default Removing Duplicates Help

I've got the following series of data (maximum of 4 data fields per group)

Cells A1:A4

White
Red
White
Blue

I want to produce a list in another column to pull those values minus
duplicates. This is something that I want to automatically calculate. The
text values in Cells A1:A4 are subject to change and are not constant, so, I
would want to automatically remove those duplicate values, and if there's a
change in A1:A4, it'll automatically update in B1:B4.

So my column should read

Cells B1:B3

White
Red
Blue

Does this involve an INDEX formula or what formula do I use to accomplish
this? Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default Removing Duplicates Help

See:
Listing Distinct Elements In A List
in:
http://www.cpearson.com/excel/ListFunctions.aspx
--
Gary''s Student - gsnu200851


"Scott" wrote:

I've got the following series of data (maximum of 4 data fields per group)

Cells A1:A4

White
Red
White
Blue

I want to produce a list in another column to pull those values minus
duplicates. This is something that I want to automatically calculate. The
text values in Cells A1:A4 are subject to change and are not constant, so, I
would want to automatically remove those duplicate values, and if there's a
change in A1:A4, it'll automatically update in B1:B4.

So my column should read

Cells B1:B3

White
Red
Blue

Does this involve an INDEX formula or what formula do I use to accomplish
this? Thanks!

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,276
Default Removing Duplicates Help

Hi,
Try
=IF(COUNTIF($C$11:C11,C11)=1,C11,"")

Change the range to fit your needs

If this was helpful please click yes, thanks

"Scott" wrote:

I've got the following series of data (maximum of 4 data fields per group)

Cells A1:A4

White
Red
White
Blue

I want to produce a list in another column to pull those values minus
duplicates. This is something that I want to automatically calculate. The
text values in Cells A1:A4 are subject to change and are not constant, so, I
would want to automatically remove those duplicate values, and if there's a
change in A1:A4, it'll automatically update in B1:B4.

So my column should read

Cells B1:B3

White
Red
Blue

Does this involve an INDEX formula or what formula do I use to accomplish
this? Thanks!

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 577
Default Removing Duplicates Help

Still isn't working. Any other ideas?



"Gary''s Student" wrote:

See:
Listing Distinct Elements In A List
in:
http://www.cpearson.com/excel/ListFunctions.aspx
--
Gary''s Student - gsnu200851


"Scott" wrote:

I've got the following series of data (maximum of 4 data fields per group)

Cells A1:A4

White
Red
White
Blue

I want to produce a list in another column to pull those values minus
duplicates. This is something that I want to automatically calculate. The
text values in Cells A1:A4 are subject to change and are not constant, so, I
would want to automatically remove those duplicate values, and if there's a
change in A1:A4, it'll automatically update in B1:B4.

So my column should read

Cells B1:B3

White
Red
Blue

Does this involve an INDEX formula or what formula do I use to accomplish
this? Thanks!

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 577
Default Removing Duplicates Help

Still not returning any values. For our example, I'm testing on a blank
worksheet.

Cells A1:A4 contain:
White
Red
Blue
White

Starting in Cell B1:B4, I want to only list the unique entries. So I'd like
for B1:B4 to read:
White
Red
Blue

Notice B4 is left blank because of the duplicate "White" text value.

I tried the recommended formula, but am not returning ANY values what so
ever.




"Eduardo" wrote:

Hi,
Try
=IF(COUNTIF($C$11:C11,C11)=1,C11,"")

Change the range to fit your needs

If this was helpful please click yes, thanks

"Scott" wrote:

I've got the following series of data (maximum of 4 data fields per group)

Cells A1:A4

White
Red
White
Blue

I want to produce a list in another column to pull those values minus
duplicates. This is something that I want to automatically calculate. The
text values in Cells A1:A4 are subject to change and are not constant, so, I
would want to automatically remove those duplicate values, and if there's a
change in A1:A4, it'll automatically update in B1:B4.

So my column should read

Cells B1:B3

White
Red
Blue

Does this involve an INDEX formula or what formula do I use to accomplish
this? Thanks!



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,276
Default Removing Duplicates Help

Hi Scott
try again I tested and it works only bring the colours once for your example
enter this in B1 and copy down
=IF(COUNTIF($A$1:A1,A1)=1,A1,"")

"Scott" wrote:

Still not returning any values. For our example, I'm testing on a blank
worksheet.

Cells A1:A4 contain:
White
Red
Blue
White

Starting in Cell B1:B4, I want to only list the unique entries. So I'd like
for B1:B4 to read:
White
Red
Blue

Notice B4 is left blank because of the duplicate "White" text value.

I tried the recommended formula, but am not returning ANY values what so
ever.




"Eduardo" wrote:

Hi,
Try
=IF(COUNTIF($C$11:C11,C11)=1,C11,"")

Change the range to fit your needs

If this was helpful please click yes, thanks

"Scott" wrote:

I've got the following series of data (maximum of 4 data fields per group)

Cells A1:A4

White
Red
White
Blue

I want to produce a list in another column to pull those values minus
duplicates. This is something that I want to automatically calculate. The
text values in Cells A1:A4 are subject to change and are not constant, so, I
would want to automatically remove those duplicate values, and if there's a
change in A1:A4, it'll automatically update in B1:B4.

So my column should read

Cells B1:B3

White
Red
Blue

Does this involve an INDEX formula or what formula do I use to accomplish
this? Thanks!

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 577
Default Removing Duplicates Help

Thanks! I got it to work!

"Eduardo" wrote:

Hi Scott
try again I tested and it works only bring the colours once for your example
enter this in B1 and copy down
=IF(COUNTIF($A$1:A1,A1)=1,A1,"")

"Scott" wrote:

Still not returning any values. For our example, I'm testing on a blank
worksheet.

Cells A1:A4 contain:
White
Red
Blue
White

Starting in Cell B1:B4, I want to only list the unique entries. So I'd like
for B1:B4 to read:
White
Red
Blue

Notice B4 is left blank because of the duplicate "White" text value.

I tried the recommended formula, but am not returning ANY values what so
ever.




"Eduardo" wrote:

Hi,
Try
=IF(COUNTIF($C$11:C11,C11)=1,C11,"")

Change the range to fit your needs

If this was helpful please click yes, thanks

"Scott" wrote:

I've got the following series of data (maximum of 4 data fields per group)

Cells A1:A4

White
Red
White
Blue

I want to produce a list in another column to pull those values minus
duplicates. This is something that I want to automatically calculate. The
text values in Cells A1:A4 are subject to change and are not constant, so, I
would want to automatically remove those duplicate values, and if there's a
change in A1:A4, it'll automatically update in B1:B4.

So my column should read

Cells B1:B3

White
Red
Blue

Does this involve an INDEX formula or what formula do I use to accomplish
this? Thanks!

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
Removing duplicates Tdp Excel Discussion (Misc queries) 6 November 27th 08 12:33 AM
Removing Duplicates Danielle Excel Worksheet Functions 5 March 10th 06 07:56 PM
removing duplicates robhargreaves Excel Discussion (Misc queries) 1 July 24th 05 12:35 AM
Removing Duplicates sat Excel Discussion (Misc queries) 5 June 18th 05 11:18 PM
Removing Duplicates sat Excel Worksheet Functions 1 June 18th 05 11:18 PM


All times are GMT +1. The time now is 03:25 AM.

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"