Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Danimal82
 
Posts: n/a
Default saving multiple sheets in a workbook

I have 1100 worksheets in a workbook all named after what I need to save them
as, but I can't find any kind of "bulk save" where Excel can take each of the
sheets and save them as individual files vs saving them all in a workbook.

I don't want to click on "Save as" for each of the files, then manually
enter the name of the worksheet, especially since there is no hotkey assigned
to "save as".

Does anyone know of a way around this? Or perhaps a shortcut for doing it?
  #2   Report Post  
Ron de Bruin
 
Posts: n/a
Default

Hi

Try
http://www.rondebruin.nl/copy6.htm


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


"Danimal82" wrote in message ...
I have 1100 worksheets in a workbook all named after what I need to save them
as, but I can't find any kind of "bulk save" where Excel can take each of the
sheets and save them as individual files vs saving them all in a workbook.

I don't want to click on "Save as" for each of the files, then manually
enter the name of the worksheet, especially since there is no hotkey assigned
to "save as".

Does anyone know of a way around this? Or perhaps a shortcut for doing it?



  #3   Report Post  
PCLIVE
 
Posts: n/a
Default

One way,

owb = ActiveWorkbook.Name


For i = 1 To 11000
Workbooks(owb).Activate
Sheets(i).Select
wsname = Sheets(i).Name
Cells.Copy
'Selection.Copy
Workbooks.Add

ActiveWorkbook.SaveAs Filename:="C:\Temp\" & wsname,
FileFormat:=xlNormal, _
Password:="", WriteResPassword:="", ReadOnlyRecommended:=False, _
CreateBackup:=False
ActiveWorkbook.Close
Next i




"Danimal82" wrote in message
...
I have 1100 worksheets in a workbook all named after what I need to save
them
as, but I can't find any kind of "bulk save" where Excel can take each of
the
sheets and save them as individual files vs saving them all in a workbook.

I don't want to click on "Save as" for each of the files, then manually
enter the name of the worksheet, especially since there is no hotkey
assigned
to "save as".

Does anyone know of a way around this? Or perhaps a shortcut for doing it?



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
selecting multiple sheets Shaun Excel Worksheet Functions 1 August 31st 05 04:09 PM
Printing Multiple sheets light_life_love Excel Discussion (Misc queries) 0 August 25th 05 08:52 PM
Exporting multiple sheets to multiple htm files? [email protected] Excel Discussion (Misc queries) 4 April 2nd 05 01:26 PM
how do i switch between multiple sheets in the same workbook (key. Catalin Excel Discussion (Misc queries) 3 December 16th 04 06:33 PM
How do I unhide multiple sheets? ahonig Excel Worksheet Functions 3 December 14th 04 09:03 PM


All times are GMT +1. The time now is 04:49 AM.

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"