Concatenating more than 30 items

G

Gus Siko

Does anyone know how to get around the 30 item limit using the Concatenate
Function. I know that you can get around the 7 level IF Function by
referring to another cell in the last False argument, but don't know how to
concatenate 2 cells using this Concatenate function.
 
J

J.E. McGimpsey

You can use the concatenate operator.

Instead of:

=CONCATENATE(A1,A2,A3,...,A30)

use

=A1 & A2 & A3 & A4

or, perhaps more efficiently (I haven't ever checked):

=CONCATENATE(A1, A2,...,A30) & CONCATENATE(A31, A32,...,A60)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top