Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Tere Gardner
 
Posts: n/a
Default Save worksheets to different files

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   Report Post  
Ron de Bruin
 
Posts: n/a
Default

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   Report Post  
Tere Gardner
 
Posts: n/a
Default

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   Report Post  
Gord Dibben
 
Posts: n/a
Default

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
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
can not save office2000 files with new name over network DF2000 Excel Discussion (Misc queries) 13 July 24th 05 08:12 PM
Excel 2000 worksheets save incorrectly as notepad files. Capdu Excel Discussion (Misc queries) 2 April 2nd 05 03:47 PM
Excel prompt to save unmodified files Alan Excel Discussion (Misc queries) 3 March 17th 05 06:25 PM
How do I save sheets in a workbook to separate files? Omzala Excel Worksheet Functions 2 January 13th 05 06:23 PM
can't save newly opened files Rasoul Khoshravan Excel Discussion (Misc queries) 1 December 9th 04 07:27 AM


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