Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 16
Default Concatenate Puzzler!

I have a column of data containing 100 cells, every 5th cell is used for
comments.

I can concatenate them into one summary cell with a line return as follows:

=Concatenate(A1,Char(10),A5,Char(10),Etc.......)

But is there a way that i can skip blanks and if duplicates, only put the
first occurence in?
i.e. if data like this:

Shiny
<Empty
Furry
Shiny
Furry
Glossy
<Empty
Matt

My concatenate would return:

Shiny
Furry
Glossy
Matt

Skipping the blank cells, only listing the first occurence of a repeat and
not doing the line return if the cell is blank.

i.e. returning...

Shiny

Furry
Gloss

Matt

Any help would be very much appreciated, im using XP sp2 and office 2000 pro.
I would prefer a written statement for the cell, but VB code i can run off a
macro is fine also.

Thanks

Brett
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Concatenate Puzzler!

First off, you do not need to use the CONCATENATE function to concatenate
text; you can use an ampersand between text string to join them. Second, you
said the comments were placed every 5th row, but your example showed the 2nd
comment cell was A5 rather than A6... I used A6, A11, A16, etc. for the
series of comment cells. Okay, with that all said, you will not be able to
use a single formula to handle the comments from your 100 rows of data
because the formula needed is too long. It is too bad as you only miss by
one comment cell. There is a way around this problem, but it involves using
two cells, so you will have to make one of them "disappear" (you can put it
in a cell that is "out of sight", or make its font color the same color as
its interior color, or hide its column and/or row). Put the following
formula in the "out of sight" cell (do NOT format it for word wrap)....

=IF(A1<"",A1,"")&IF(AND(A6<"",COUNTIF(A1:A6,A6)= 1),CHAR(10)&A6,"")&IF(AND(A11<"",COUNTIF(A1:A11,A 11)=1),CHAR(10)&A11,"")&IF(AND(A16<"",COUNTIF(A1: A16,A16)=1),CHAR(10)&A16,"")&IF(AND(A21<"",COUNTI F(A1:A21,A21)=1),CHAR(10)&A21,"")&IF(AND(A26<"",C OUNTIF(A1:A26,A26)=1),CHAR(10)&A26,"")&IF(AND(A31< "",COUNTIF(A1:A31,A31)=1),CHAR(10)&A31,"")&IF(AND (A36<"",COUNTIF(A1:A36,A36)=1),CHAR(10)&A36,"")&I F(AND(A41<"",COUNTIF(A1:A41,A41)=1),CHAR(10)&A41, "")&IF(AND(A46<"",COUNTIF(A1:A46,A46)=1),CHAR(10) &A46,"")&IF(AND(A51<"",COUNTIF(A1:A51,A51)=1),CHA R(10)&A51,"")&IF(AND(A56<"",COUNTIF(A1:A56,A56)=1 ),CHAR(10)&A56,"")&IF(AND(A61<"",COUNTIF(A1:A61,A 61)=1),CHAR(10)&A61,"")&IF(AND(A66<"",COUNTIF(A1: A66,A66)=1),CHAR(10)&A66,"")&IF(AND(A71<"",COUNTI F(A1:A71,A71)=1),CHAR(10)&A71,"")&IF(AND(A76<"",C OUNTIF(A1:A76,A76)=1),CHAR(10)&A76,"")&IF(AND(A81< "",COUNTIF(A1:A81,A81)=1),CHAR(10)&A81,"")&IF(AND (A86<"",COUNTIF(A1:A86,A86)=1),CHAR(10)&A86,"")&I F(AND(A91<"",COUNTIF(A1:A91,A91)=1),CHAR(10)&A91, "")

Then, put this formula into the cell you want to display your results in
(and DO format it for word wrap)....

=Z100&IF(AND(A96<"",COUNTIF(A1:A96,A96)=1),CHAR(1 0)&A96,"")

Here, I have assumed the "out of sight" cell is Z100 so you will have to
change its reference to the actual cell you are going to use.

Rick


"Bretter99" wrote in message
...
I have a column of data containing 100 cells, every 5th cell is used for
comments.

I can concatenate them into one summary cell with a line return as
follows:

=Concatenate(A1,Char(10),A5,Char(10),Etc.......)

But is there a way that i can skip blanks and if duplicates, only put the
first occurence in?
i.e. if data like this:

Shiny
<Empty
Furry
Shiny
Furry
Glossy
<Empty
Matt

My concatenate would return:

Shiny
Furry
Glossy
Matt

Skipping the blank cells, only listing the first occurence of a repeat and
not doing the line return if the cell is blank.

i.e. returning...

Shiny

Furry
Gloss

Matt

Any help would be very much appreciated, im using XP sp2 and office 2000
pro.
I would prefer a written statement for the cell, but VB code i can run off
a
macro is fine also.

Thanks

Brett


  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Concatenate Puzzler!

Ignore my previous post. While it works, it is not necessary to do it that
way. A slight switch in the logical tests ends up saving enough characters
to make the entire formula fit within a single cell.

Use this formula, by itself, in place of the formula I posted earlier...

=IF(A1<"",A1,"")&IF(OR(A6="",COUNTIF(A1:A6,A6)1) ,"",CHAR(10)&A6)&IF(OR(A11="",COUNTIF(A1:A11,A11) 1),"",CHAR(10)&A11)&IF(OR(A16="",COUNTIF(A1:A16,A1 6)1),"",CHAR(10)&A16)&IF(OR(A21="",COUNTIF(A1:A21 ,A21)1),"",CHAR(10)&A21)&IF(OR(A26="",COUNTIF(A1: A26,A26)1),"",CHAR(10)&A26)&IF(OR(A31="",COUNTIF( A1:A31,A31)1),"",CHAR(10)&A31)&IF(OR(A36="",COUNT IF(A1:A36,A36)1),"",CHAR(10)&A36)&IF(OR(A41="",CO UNTIF(A1:A41,A41)1),"",CHAR(10)&A41)&IF(OR(A46="" ,COUNTIF(A1:A46,A46)1),"",CHAR(10)&A46)&IF(OR(A51 ="",COUNTIF(A1:A51,A51)1),"",CHAR(10)&A51)&IF(OR( A56="",COUNTIF(A1:A56,A56)1),"",CHAR(10)&A56)&IF( OR(A61="",COUNTIF(A1:A61,A61)1),"",CHAR(10)&A61)& IF(OR(A66="",COUNTIF(A1:A66,A66)1),"",CHAR(10)&A6 6)&IF(OR(A71="",COUNTIF(A1:A71,A71)1),"",CHAR(10) &A71)&IF(OR(A76="",COUNTIF(A1:A76,A76)1),"",CHAR( 10)&A76)&IF(OR(A81="",COUNTIF(A1:A81,A81)1),"",CH AR(10)&A81)&IF(OR(A86="",COUNTIF(A1:A86,A86)1),"" ,CHAR(10)&A86)&IF(OR(A91="",COUNTIF(A1:A91,A91)1) ,"",CHAR(10)&A91)&IF(OR(A96="",COUNTIF(A1:A96,A96) 1),"",CHAR(10)&A96)


Rick

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 16
Default Concatenate Puzzler!

Thanks so much Rick, that works perfectly!

Appreciate the super quick response too!

Best Regards

Brett

"Rick Rothstein (MVP - VB)" wrote:

Ignore my previous post. While it works, it is not necessary to do it that
way. A slight switch in the logical tests ends up saving enough characters
to make the entire formula fit within a single cell.

Use this formula, by itself, in place of the formula I posted earlier...


=IF(A1<"",A1,"")&IF(OR(A6="",COUNTIF(A1:A6,A6)1) ,"",CHAR(10)&A6)&IF(OR(A11="",COUNTIF(A1:A11,A11) 1),"",CHAR(10)&A11)&IF(OR(A16="",COUNTIF(A1:A16,A1 6)1),"",CHAR(10)&A16)&IF(OR(A21="",COUNTIF(A1:A21 ,A21)1),"",CHAR(10)&A21)&IF(OR(A26="",COUNTIF(A1: A26,A26)1),"",CHAR(10)&A26)&IF(OR(A31="",COUNTIF( A1:A31,A31)1),"",CHAR(10)&A31)&IF(OR(A36="",COUNT IF(A1:A36,A36)1),"",CHAR(10)&A36)&IF(OR(A41="",CO UNTIF(A1:A41,A41)1),"",CHAR(10)&A41)&IF(OR(A46="" ,COUNTIF(A1:A46,A46)1),"",CHAR(10)&A46)&IF(OR(A51 ="",COUNTIF(A1:A51,A51)1),"",CHAR(10)&A51)&IF(OR( A56="",COUNTIF(A1:A56,A56)1),"",CHAR(10)&A56)&IF( OR(A61="",COUNTIF(A1:A61,A61)1),"",CHAR(10)&A61)& IF(OR(A66="",COUNTIF(A1:A66,A66)1),"",CHAR(10)&A6 6)&IF(OR(A71="",COUNTIF(A1:A71,A71)1),"",CHAR(10) &A71)&IF(OR(A76="",COUNTIF(A1:A76,A76)1),"",CHAR( 10)&A76)&IF(OR(A81="",COUNTIF(A1:A81,A81)1),"",CH AR(10)&A81)&IF(OR(A86="",COUNTIF(A1:A86,A86)1),"" ,CHAR(10)&A86)&IF(OR(A91="",COUNTIF(A1:A91,A91)1) ,"",CHAR(10)&A91)&IF(OR(A96="",COUNTIF(A1:A96,A96) 1),"",CHAR(10)&A96)


Rick


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
Concatenate tbobo Excel Discussion (Misc queries) 4 February 15th 06 04:04 AM
Pivot Table Question - a puzzler bill_morgan Excel Discussion (Misc queries) 1 October 27th 05 03:23 AM
Concatenate Jeff Excel Discussion (Misc queries) 4 October 5th 05 04:39 PM
I know how to concatenate ,can one de-concatenate to split date? QUICK BOOKS PROBLEM- New Users to Excel 1 July 26th 05 05:07 PM
Another puzzler soxn4n04 Excel Worksheet Functions 4 November 30th 04 07:39 PM


All times are GMT +1. The time now is 03:58 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"