Concatenate formula

Manolocs

Active Member
Joined
Mar 28, 2008
Messages
340
Hello, I want to concatenate all words with a space in the same row but some rows has more than 30 columns

How can I make simple this formula maybe with function?

=CONCATENATE(A1," ",B1," ",C1," "......... until there is text in the cell?

Thanks in advance :)
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
in cell A2 put the below formula

=A1

in cell B2 put the below

=A2&" "&B1

then drag across.
 
Upvote 0
this is just to show you.... this can be performed on a separate worksheet if needed
 
Upvote 0
Hi Barry, when I drag across comes only the A1 in all columns. It is strange, this works in Windows but not in Mac ????
 
Last edited:
Upvote 0
there should be no issues in this formula.

for example... in A1, you have the value "Hi"

so in A2 , you have the formula "=A1". Therefore, A2 also equals "Hi".

in B1, you have the value "Bob". In B2, you have the formula "=A2" "&B1". So the value in B2 is now "Hi Bob"

In C1 is "how". In C2 is "=B2&" "&C1".

B2 = Hi Bob
C1 = how

so now C2 = Hi Bob how

and so on.
 
Upvote 0
Hello, I want to concatenate all words with a space in the same row but some rows has more than 30 columns

How can I make simple this formula maybe with function?

=CONCATENATE(A1," ",B1," ",C1," "......... until there is text in the cell?
You can do this using a UDF (user defined function)...

Code:
[table="width: 500"]
[tr]
	[td]Function WordsAcrossRow(RowNumber As Long) As String
  WordsAcrossRow = Application.Trim(Join(Application.Index(Rows(RowNumber).Value, 1, 0), " "))
End Function[/td]
[/tr]
[/table]


HOW TO INSTALL UDFs
------------------------------------
If you are new to UDFs, they are easy to install and use. To install it, simply press ALT+F11 to go into the VB editor and, once there, click Insert/Module on its menu bar, then copy/paste the above code into the code window that just opened up. That's it.... you are done. You can now use WordsAcrossRow just like it was a built-in Excel function. For example, concatenating the words on Row 1...

=WordsAcrossRow(1)

If you want to be able to copy the formula down, then you can specify the row number this way...

=WordsAcrossRow(ROWS($1:1))

If you are using XL2007 or above, make sure you save your file as an "Excel Macro-Enabled Workbook (*.xlsm) and answer the "do you want to enable macros" question as "yes" or "OK" (depending on the button label for your version of Excel) the next time you open your workbook.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,372
Messages
6,124,537
Members
449,169
Latest member
mm424

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top