Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default How do I send single worksheets in a workbook to different recipi.

I have a requirement to send a number of worksheets from a single workbook.
Each sheet is sent to a different recipient, all sheets are sent at the same
time and a macro/VBA routine would be ideal for this purpose. I do not want
to send the whole workbook. The work sheets are Pivot Table reports.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default How do I send single worksheets in a workbook to different recipi.

' put copy of sheet in new workbook
activesheet.copy
' remove links in copy
' also removes the pivot table capability but
' the data is left
activesheet.copy
activesheet.pastespecial xlValues
activeworkbook.Senmail . . .
activeworkbook.close SaveChanges:=False


you would just loop through the appropriate sheets and use code similar to
the above.

--
Regards,
Tom Ogilvy


"FREDTHEUNREADY" wrote in message
...
I have a requirement to send a number of worksheets from a single

workbook.
Each sheet is sent to a different recipient, all sheets are sent at the

same
time and a macro/VBA routine would be ideal for this purpose. I do not

want
to send the whole workbook. The work sheets are Pivot Table reports.



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
Collate Worksheets into single workbook jw4774 Excel Discussion (Misc queries) 3 March 25th 10 08:30 AM
how can I combine multiple worksheets into a single workbook? don_15D Excel Discussion (Misc queries) 6 January 3rd 09 07:51 AM
Charts move and formatting changes when using 'Send to Mail Recipi Rich Charts and Charting in Excel 2 April 13th 08 01:00 AM
Compile all Worksheets in a Workbook in to a single Worksheet? Eric at MTI in Utah Excel Worksheet Functions 2 June 20th 06 06:56 PM
Send worksheets in workbook billy2willy Excel Discussion (Misc queries) 4 July 12th 05 07:29 AM


All times are GMT +1. The time now is 02:10 PM.

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

About Us

"It's about Microsoft Excel"