Reverse of Text to Columns

edzzz

Board Regular
Joined
Aug 19, 2002
Messages
145
Just wondering if there's an easy way to do the reverse of the Text to Columns function. I have a spreadsheet with First Name in column A, Middle Init in column B and Last Name in column C. In column D, I'd like to have First (space) Middle (space) Last. Do I need a macro to do this or is there a built-in function in Excel of which I'm unaware?

Thanks,
Ed
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
edzzz said:
Just wondering if there's an easy way to do the reverse of the Text to Columns function. I have a spreadsheet with First Name in column A, Middle Init in column B and Last Name in column C. In column D, I'd like to have First (space) Middle (space) Last. Do I need a macro to do this or is there a built-in function in Excel of which I'm unaware?

Thanks,
Ed


=A1&" "&B1&" "&C1

Better

=A1&IF(B1<>""," "&B1,"")&" "&C1
 
Upvote 0
what if you want to insert a comma when "reversing text to column function? for instance, if you're doing this with dates and want to make June 23 2011 => June 23, 2011 ?
 
Upvote 0
Are the "dates" actually being recognized as dates in the formula bar? If yes, you should be able to just change the number format of the cell.
 
Upvote 0
yes, appear as is. dates. changing format to dates and numbers, but neither does the trick though.
 
Upvote 0

Forum statistics

Threads
1,214,591
Messages
6,120,426
Members
448,961
Latest member
nzskater

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