I have a column of email addresses, and I want to combine them all into one
cell seperated by commas. I want to make an group email list that I can just
copy into an email without having to enter each individual emaill address.
|
|
0
|
|
|
|
Reply
|
Utf
|
3/5/2010 4:22:01 PM |
|
Say your email list is in column C starting in C1. In D1 enter "=C1"
without the quotes. In D2 enter =D1&","&C2. Drag this formula down as far
as your email list goes. The last cell will show all the emails. HTH Otto
"ILunacy" <ILunacy@discussions.microsoft.com> wrote in message
news:59C0E067-1E04-4FE2-B15D-3B8A90F707F7@microsoft.com...
> I have a column of email addresses, and I want to combine them all into
> one
> cell seperated by commas. I want to make an group email list that I can
> just
> copy into an email without having to enter each individual emaill address.
|
|
0
|
|
|
|
Reply
|
Otto
|
3/5/2010 5:00:49 PM
|
|
Hopefully not for all the 500 mentioned in another thread... ;-)
Again..., Assuming your E-Mail list resides in range A1:A10:
Press ALT+[F11] > declare a Module (if doesn't exist) and type the following
UDF:
--------------------------------------------------------
Function Concat(Rng As Range, Delimiter As String)
For Each ST In Rng
If ST <> "" Then S = S & ST & Delimiter
Next
Concat = Left(S, Len(S) - Len(Delimiter))
End Function
-----------------------------------------------------
Go back to your sheet and in cell B1 type:
=Concat(A1:A10,",")
Micky
"ILunacy" wrote:
> I have a column of email addresses, and I want to combine them all into one
> cell seperated by commas. I want to make an group email list that I can just
> copy into an email without having to enter each individual emaill address.
|
|
0
|
|
|
|
Reply
|
Utf
|
3/5/2010 5:34:01 PM
|
|