Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Mailing excel pages

I have a multisheet Excel spreadsheet. Each sheet has the same
format, and one of the cells has an email address in it.
I'd like to add a button or function that would email each
sheet to the email address in that cell. Is there an easy
way to do that?


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Mailing excel pages

To do them all:

for each sh in ThisWorkbook.Worksheets
sh.activate
ActiveSheet.Copy
ActiveWorkbook.SendMail ActiveSheet.Range("A1").Value,"Current Status"
ActiveWorkbook.Close SaveChanges:=False
Next


for a button on each sheet.

ActiveSheet.Copy
ActiveWorkbook.SendMail ActiveSheet.Range("A1").Value,"Current Status"
ActiveWorkbook.Close SaveChanges:=False


--
Regards,
Tom Ogilvy


"A Jones" wrote in message
y...
I have a multisheet Excel spreadsheet. Each sheet has the same
format, and one of the cells has an email address in it.
I'd like to add a button or function that would email each
sheet to the email address in that cell. Is there an easy
way to do that?




  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Mailing excel pages

See also

http://www.rondebruin.nl/mail/folder1/mail5.htm

Or

http://www.rondebruin.nl/mail/folder2/mail5.htm

Or in the body
http://www.rondebruin.nl/mail/folder3/mail5.htm



--
Regards Ron de Bruin
http://www.rondebruin.nl


"A Jones" wrote in message y...
I have a multisheet Excel spreadsheet. Each sheet has the same
format, and one of the cells has an email address in it.
I'd like to add a button or function that would email each
sheet to the email address in that cell. Is there an easy
way to do that?




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
I need to import my Excel Mailing list into mailing label format. Gord Dibben Excel Discussion (Misc queries) 0 November 5th 09 10:16 PM
I need to import my Excel Mailing list into mailing label format. Lyn Excel Discussion (Misc queries) 0 November 5th 09 08:11 PM
Need Help -- Baseball stats in excel only has 23 pages--Need to addmore pages.. GE Cathey Setting up and Configuration of Excel 7 May 17th 07 09:42 PM
Need Help -- Baseball stats in excel only has 23 pages--Need to addmore pages... GE Cathey Excel Worksheet Functions 1 May 16th 07 08:17 PM
how do i convert MS Word mailing labels into an Excel mailing lis. unrhyll Excel Discussion (Misc queries) 1 February 4th 05 12:19 AM


All times are GMT +1. The time now is 04:14 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"