Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Using Outlook with Excel to Input Names into Email

Hi All,
I have an Excel Spreedsheet that has email names in cell
C3:AU3. Is there a way to build a command button or form
in the spreadsheet to input thoses names into the MS
Outlook To: Section of the email? Thanks for the Help!
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 550
Default Using Outlook with Excel to Input Names into Email

Paul,

Everything you wanted to know about e-mailing from
Excel (and then some):

http://www.rondebruin.nl/sendmail.htm

John

Paul wrote:

Hi All,
I have an Excel Spreedsheet that has email names in cell
C3:AU3. Is there a way to build a command button or form
in the spreadsheet to input thoses names into the MS
Outlook To: Section of the email? Thanks for the Help!


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Using Outlook with Excel to Input Names into Email

Ron,
Thanks for the info! Where do I plug that code in? I am
confused!
-----Original Message-----
You can use this

Dim cell As Range
For Each cell In Range("C3:AU3").Cells.SpecialCells

(xlCellTypeConstants)
If cell.Value Like "*@*" Then
strto = strto & cell.Value & ";"
End If
Next
strto = Left(strto, Len(strto) - 1)

And use this in the To field

..To = strto



--
Regards Ron de Bruin
(Win XP Pro SP-1 XL2002 SP-2)
www.rondebruin.nl



"Paul" wrote in message

...
Hi All,
I have an Excel Spreedsheet that has email names in cell
C3:AU3. Is there a way to build a command button or form
in the spreadsheet to input thoses names into the MS
Outlook To: Section of the email? Thanks for the Help!



.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Using Outlook with Excel to Input Names into Email

http://www.rondebruin.nl/sendmail.htm#other

Look here Paul

--
Regards Ron de Bruin
(Win XP Pro SP-1 XL2002 SP-2)
www.rondebruin.nl



"Paul" wrote in message ...
Ron,
Thanks for the info! Where do I plug that code in? I am
confused!
-----Original Message-----
You can use this

Dim cell As Range
For Each cell In Range("C3:AU3").Cells.SpecialCells

(xlCellTypeConstants)
If cell.Value Like "*@*" Then
strto = strto & cell.Value & ";"
End If
Next
strto = Left(strto, Len(strto) - 1)

And use this in the To field

..To = strto



--
Regards Ron de Bruin
(Win XP Pro SP-1 XL2002 SP-2)
www.rondebruin.nl



"Paul" wrote in message

...
Hi All,
I have an Excel Spreedsheet that has email names in cell
C3:AU3. Is there a way to build a command button or form
in the spreadsheet to input thoses names into the MS
Outlook To: Section of the email? Thanks for the Help!



.



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 550
Default Using Outlook with Excel to Input Names into Email

Ron,

I think I said that already <vbg

Again, my thanks for an excellent web page that
completely answers over 90% (maybe more) of the
questions posted on the subject of e-mail (of which
there are an abundance).

John

Ron de Bruin wrote:

http://www.rondebruin.nl/sendmail.htm#other

Look here Paul

--
Regards Ron de Bruin
(Win XP Pro SP-1 XL2002 SP-2)
www.rondebruin.nl


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel to form email in outlook Aaron Excel Worksheet Functions 1 July 3rd 07 03:25 PM
Create Outlook email from Excel DoooWhat Excel Discussion (Misc queries) 1 April 9th 07 07:20 PM
Excel and Email/Outlook Carl Excel Worksheet Functions 2 January 5th 07 11:56 AM
How do I get excel to create an email using Outlook? cleslie Excel Discussion (Misc queries) 0 November 30th 05 12:11 AM
automate input of an address from Outlook into excel Robb Excel Discussion (Misc queries) 0 June 14th 05 09:21 PM


All times are GMT +1. The time now is 04:55 PM.

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

About Us

"It's about Microsoft Excel"