Need to take text from multiple columns in the same row and put it into a single cell, but I would like line break (alt enter) between all of the text

jetedf001

New Member
Joined
Jul 7, 2003
Messages
30
I have multiple columns of text date that I would like to have in a single cell. So, normally I would have a formula that looks something like this:

=E3&", "&F3&", "&G3

Can I insert a line break (alt enter) instead of the ", " somehow?
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
How about
=E3&char(10)&F3&char(10)&G3
 
Upvote 0
I also tried:

=TEXTJOIN(CHAR(10),1,E3:G3)

but everything is just stuck together, so it reads.
Column1textColumn2textColumn3text
 
Upvote 0
You need to turn "Wrap Text" on.
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,225,739
Messages
6,186,746
Members
453,370
Latest member
juliewar

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