A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » New Users
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

excell spreadsheet



 
 
Thread Tools Display Modes
  #1  
Old March 11th, 2009, 09:47 PM posted to microsoft.public.excel.newusers
spenlc
external usenet poster
 
Posts: 2
Default excell spreadsheet

I am attempting to take a spreadshhet of email address a1-a1350 and make them
one string of addresses in the same cell to send out a mass email. Is there a
formula that I can enter to do this all at once or am I going to have to do
them one at a time
  #2  
Old March 11th, 2009, 11:04 PM posted to microsoft.public.excel.newusers
Gord Dibben
external usenet poster
 
Posts: 20,252
Default excell spreadsheet

See Ron de Bruin's site for code to send an email to every valid email
address in a range.

http://www.rondebruin.nl/mail/folder3/message.htm

No need to put all the addresses in one cell.


Gord Dibben MS Excel MVP

On Wed, 11 Mar 2009 14:47:01 -0700, spenlc
wrote:

I am attempting to take a spreadshhet of email address a1-a1350 and make them
one string of addresses in the same cell to send out a mass email. Is there a
formula that I can enter to do this all at once or am I going to have to do
them one at a time


  #3  
Old March 12th, 2009, 04:26 AM posted to microsoft.public.excel.newusers
Shane Devenshire
external usenet poster
 
Posts: 845
Default excell spreadsheet

Hi,

My concern is trying to concatenate 1300 email addresses, it may just be too
long.

--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"spenlc" wrote:

I am attempting to take a spreadshhet of email address a1-a1350 and make them
one string of addresses in the same cell to send out a mass email. Is there a
formula that I can enter to do this all at once or am I going to have to do
them one at a time

  #4  
Old March 12th, 2009, 01:31 PM posted to microsoft.public.excel.newusers
Hardeep kanwar
external usenet poster
 
Posts: 69
Default excell spreadsheet

Hi! Try this



Function ConcVertical(rng As Range, joinStr As String) As String
ConcVertical = _
Join(Evaluate("transpose(" & rng.Address(, , , True) & ")"), joinStr) &
"."
End Function

Put in B2
=concvertical(A1:a1350)



"spenlc" wrote:

I am attempting to take a spreadshhet of email address a1-a1350 and make them
one string of addresses in the same cell to send out a mass email. Is there a
formula that I can enter to do this all at once or am I going to have to do
them one at a time

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 07:51 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.