Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
how do I link pivot table data into a separate document? | Excel Worksheet Functions | |||
Scan from a document to excel with separate cells | Excel Discussion (Misc queries) | |||
How to get separate Taskbar Buttons for each Excel Document? | Setting up and Configuration of Excel | |||
auto update xls document from separate file | Excel Discussion (Misc queries) | |||
Incorporation of Data Into Separate Document | Setting up and Configuration of Excel |