Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 9
Default Make each tab/worksheet into a separate document

I have an Excel document with four worksheets and need to send each one as an
email. How do I make each worksheet into its own document?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,268
Default Make each tab/worksheet into a separate document

If this is a one timer just copy each sheet to a new workbook and send the
workbook
If this will happen quite often you can download an add-in by Ron De Bruin

http://www.rondebruin.nl/mail/add-in.htm



--
Regards,

Peo Sjoblom



"Cher" wrote in message
...
I have an Excel document with four worksheets and need to send each one as
an
email. How do I make each worksheet into its own document?



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,123
Default Make each tab/worksheet into a separate document

If you use this code example you can do it with one click
http://www.rondebruin.nl/mail/folder1/mail5.htm

Or example 2 on this page
http://www.rondebruin.nl/mail/folder1/mail2.htm



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Peo Sjoblom" wrote in message ...
If this is a one timer just copy each sheet to a new workbook and send the
workbook
If this will happen quite often you can download an add-in by Ron De Bruin

http://www.rondebruin.nl/mail/add-in.htm



--
Regards,

Peo Sjoblom



"Cher" wrote in message
...
I have an Excel document with four worksheets and need to send each one as
an
email. How do I make each worksheet into its own document?



  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 22,906
Default Make each tab/worksheet into a separate document

Ron's sendmail add-in is best choice for sending each sheet.

If you did want to create new workbooks just for this or any other reason.....

Sub Make_New_Books()
Dim w As Worksheet
Application.ScreenUpdating = False
Application.DisplayAlerts = False
For Each w In ActiveWorkbook.Worksheets
w.Copy
ActiveWorkbook.SaveAs FileName:=ThisWorkbook.Path & "\" & w.Name
ActiveWorkbook.Close
Next w
Application.DisplayAlerts = True
Application.ScreenUpdating = True
End Sub


Gord Dibben MS Excel MVP

On Mon, 9 Jul 2007 10:02:01 -0700, Cher wrote:

I have an Excel document with four worksheets and need to send each one as an
email. How do I make each worksheet into its own document?


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
how do I link pivot table data into a separate document? Hendy Excel Worksheet Functions 1 February 15th 07 12:56 AM
Scan from a document to excel with separate cells Shannon Y Excel Discussion (Misc queries) 1 January 6th 07 05:04 PM
How to get separate Taskbar Buttons for each Excel Document? Victory Setting up and Configuration of Excel 2 March 1st 06 10:30 AM
auto update xls document from separate file kaplonk Excel Discussion (Misc queries) 2 June 3rd 05 02:37 PM
Incorporation of Data Into Separate Document LDWyatt Setting up and Configuration of Excel 1 February 28th 05 10:13 AM


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