Reverse Columns To Text?

ppleasebob

Board Regular
Joined
Dec 23, 2002
Messages
145
Hello Board,
I have a list of 3,000 customers email address, currently in a single column, I need to paste them into a single cell (or as many as possible into a single cell) separated by a comma, so I can drop them into a bulk emailer on our website,

I have concatenated a comma on to the end of each one, but need a way of putting the comma'd addresses into the single cell, without selecting the cell typing a comma then the next cell etc..

I thought that I could paste special transpose, the list and then 'merge' it into one cell?

Any thoughts, ideas
Thanks
Bob

Ps the email address list is genuine - (and not for sale!)
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
How about saving the list as a text file from within Excel, and dropping that into the emailer - would that work ?
 
Upvote 0
Hello Bob

FYI - you don't need to apply the comma in future as it is a fairly simple code requirement to do this. Assume your list in A1:A3000, then open up the VBE (Alt+F11), open up the Immediate Window (if it isn't already) - Ctrl+G - and type in the following:

Code:
Range("C1").Value = Join(Application.Transpose(Range("A1:A3000")))

and press return.

There is a max amount of text in any one cell (2^15-1), so not all of it may fit.
 
Upvote 0

Forum statistics

Threads
1,215,479
Messages
6,125,043
Members
449,206
Latest member
Healthydogs

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