Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I have a workbook with individual worksheets. I need to save each worksheet
into a different file name so that they can be distributed to different people. Each file represents the results for one indivual. I have to send the worksheets to the propoer manager. Is there a way to automatically/easily save these as seperate excel files? thanks -- Tere for Stan |
#2
![]() |
|||
|
|||
![]()
Hi Tere
Here is a example http://www.rondebruin.nl/copy6.htm If you want to also mail the workbooks then look here http://www.rondebruin.nl/mail/folder1/mail5.htm Or http://www.rondebruin.nl/mail/folder2/mail5.htm -- Regards Ron de Bruin http://www.rondebruin.nl "Tere Gardner" wrote in message ... I have a workbook with individual worksheets. I need to save each worksheet into a different file name so that they can be distributed to different people. Each file represents the results for one indivual. I have to send the worksheets to the propoer manager. Is there a way to automatically/easily save these as seperate excel files? thanks -- Tere for Stan |
#3
![]() |
|||
|
|||
![]()
Thanks Ron. This solved my issue.
"Ron de Bruin" wrote: Hi Tere Here is a example http://www.rondebruin.nl/copy6.htm If you want to also mail the workbooks then look here http://www.rondebruin.nl/mail/folder1/mail5.htm Or http://www.rondebruin.nl/mail/folder2/mail5.htm -- Regards Ron de Bruin http://www.rondebruin.nl "Tere Gardner" wrote in message ... I have a workbook with individual worksheets. I need to save each worksheet into a different file name so that they can be distributed to different people. Each file represents the results for one indivual. I have to send the worksheets to the propoer manager. Is there a way to automatically/easily save these as seperate excel files? thanks -- Tere for Stan |
#4
![]() |
|||
|
|||
![]()
Tere
Sub Make_New_Books() Dim w As Worksheet Application.Calculation = xlCalculationManual 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 Application.Calculation = xlCalculationAutomatic End Sub Gord Dibben Excel MVP On Mon, 2 May 2005 11:33:01 -0700, Tere Gardner wrote: I have a workbook with individual worksheets. I need to save each worksheet into a different file name so that they can be distributed to different people. Each file represents the results for one indivual. I have to send the worksheets to the propoer manager. Is there a way to automatically/easily save these as seperate excel files? thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
can not save office2000 files with new name over network | Excel Discussion (Misc queries) | |||
Excel 2000 worksheets save incorrectly as notepad files. | Excel Discussion (Misc queries) | |||
Excel prompt to save unmodified files | Excel Discussion (Misc queries) | |||
How do I save sheets in a workbook to separate files? | Excel Worksheet Functions | |||
can't save newly opened files | Excel Discussion (Misc queries) |