Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Need to combine 100 email addesses in separate rows (in Excel) into one cell,
separated by comma, so I can do mass mail. Formula I'm trying won't work. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi Miki Jo
You can use code or a function like this to do it http://www.mcgimpsey.com/excel/udfs/multicat.html -- Regards Ron de Bruin http://www.rondebruin.nl "Miki Jo" <Miki wrote in message ... Need to combine 100 email addesses in separate rows (in Excel) into one cell, separated by comma, so I can do mass mail. Formula I'm trying won't work. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Miki
Function ConCatRange(CellBlock As Range) As String Dim cell As Range Dim sbuf As String For Each cell In CellBlock If Len(cell.text) 0 Then sbuf = sbuf & cell.text & "," Next ConCatRange = Left(sbuf, Len(sbuf) - 1) End Function usage would be =ConCatRange(A1:A100) Gord Dibben MS Excel MVP On Thu, 9 Mar 2006 09:41:29 -0800, Miki Jo <Miki wrote: Need to combine 100 email addesses in separate rows (in Excel) into one cell, separated by comma, so I can do mass mail. Formula I'm trying won't work. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Urgent date/scheduling calc needed | Excel Worksheet Functions | |||
Using absolute cell refernce and inserting rows | Excel Worksheet Functions | |||
How do I transpose Comma Separated Data in each cell and delete t. | Excel Discussion (Misc queries) | |||
Paste rows of numbers from Word into single Excel cell | Excel Discussion (Misc queries) | |||
GET.CELL | Excel Worksheet Functions |