Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Emece
 
Posts: n/a
Default Create different workbooks from only one workbook

I have one workbook with 15 sheets. I want Excel to generate one separate
workbook from each sheet in the book. Is this possible?

Thanks in advance

Regards,
Emece.-
  #2   Report Post  
Ron de Bruin
 
Posts: n/a
Default

You can try
http://www.rondebruin.nl/copy6.htm


--
Regards Ron de Bruin
http://www.rondebruin.nl


"Emece" wrote in message ...
I have one workbook with 15 sheets. I want Excel to generate one separate
workbook from each sheet in the book. Is this possible?

Thanks in advance

Regards,
Emece.-



  #3   Report Post  
Gord Dibben
 
Posts: n/a
Default

Emece

You can use a macro.

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 Excel MVP

On Thu, 29 Sep 2005 07:51:17 -0700, "Emece"
wrote:

I have one workbook with 15 sheets. I want Excel to generate one separate
workbook from each sheet in the book. Is this possible?

Thanks in advance

Regards,
Emece.-


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 I split worksheets from one workbook into individual workbooks Rosana Excel Discussion (Misc queries) 0 September 19th 05 08:03 PM
How can I create an XML map (2003) to import to workbook Scott Gillespie Excel Worksheet Functions 1 April 27th 05 09:21 PM
import multiple workbooks into 1 workbook Anita Excel Discussion (Misc queries) 9 February 18th 05 04:05 PM
create a drop down list with the source from a different workbook Sampath Excel Discussion (Misc queries) 2 January 8th 05 07:57 PM
Create invoices from excel workbook KJH Excel Worksheet Functions 5 December 22nd 04 02:21 PM


All times are GMT +1. The time now is 01:23 PM.

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

About Us

"It's about Microsoft Excel"