#1   Report Post  
Jeff
 
Posts: n/a
Default Concatenate

I need to concatenate about 100 cells.

The concatenate function only accepts 25 cells.

Is there any way to concatenate all the cells in a simple formula?
  #2   Report Post  
bj
 
Posts: n/a
Default

try
= concatinate(GROUP1) &concatinate(GROUP2)&concatinate(Group3) &
concatinate(Group4)

"Jeff" wrote:

I need to concatenate about 100 cells.

The concatenate function only accepts 25 cells.

Is there any way to concatenate all the cells in a simple formula?

  #3   Report Post  
Matt Cromer
 
Posts: n/a
Default

Jeff -

Try using the & function. I test it out to 38 and it was still going.
eg. =a1&a2&a3.....

Hope this works for you.

"Jeff" wrote:

I need to concatenate about 100 cells.

The concatenate function only accepts 25 cells.

Is there any way to concatenate all the cells in a simple formula?

  #4   Report Post  
David Billigmeier
 
Posts: n/a
Default

Do you mind a UDF? This will work:

Function ConCat(rng As Range)
Dim temp As String
For Each rng In rng
temp = temp & rng
Next
ConCat = temp
End Function

Then, all you have to do to call it is input as a range like so:

=ConCat(A1:A1000)


--
Regards,
Dave


"Jeff" wrote:

I need to concatenate about 100 cells.

The concatenate function only accepts 25 cells.

Is there any way to concatenate all the cells in a simple formula?

  #5   Report Post  
Roger Govier
 
Posts: n/a
Default

Hi Jeff

Try
=Your_formula&another_concatenate_formula&another_ concatenate_formula&another_concatenate_formula


Regards

Roger Govier



Jeff wrote:

I need to concatenate about 100 cells.

The concatenate function only accepts 25 cells.

Is there any way to concatenate all the cells in a simple formula?


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
Using Concatenate inside a vlookup bmclean Excel Worksheet Functions 3 July 5th 05 09:29 PM
Concatenate in Pocket Excel jrd05719 Excel Worksheet Functions 0 June 16th 05 05:07 PM
Concatenate cells in Pocket Excel jrd05719 Excel Discussion (Misc queries) 0 June 16th 05 05:05 PM
Concatenate Function will not work Chuck W Excel Discussion (Misc queries) 4 January 31st 05 11:41 PM
Concatenate cells without specifying/writing cell address individually Hari Excel Discussion (Misc queries) 4 January 3rd 05 06:05 PM


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