Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Save several copies of the same worksheet

hi.
I have to save 400 copies of the same worksheet in different names.
Any idea's of how i can do this as easy as possible?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,123
Default Save several copies of the same worksheet

Hi ayeshasid

I have to save 400 copies of the same

Worksheet or workbook ?

How do you want to name them ?


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"ayeshasid" wrote in message ...
hi.
I have to save 400 copies of the same worksheet in different names.
Any idea's of how i can do this as easy as possible?

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Save several copies of the same worksheet

Hi

It's a clientlist, so i have to name them by each clients name, to make
changes on them later, but they all have to look the same way from the
beginning....

Ron de Bruin skrev:

Hi ayeshasid

I have to save 400 copies of the same

Worksheet or workbook ?

How do you want to name them ?


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"ayeshasid" wrote in message ...
hi.
I have to save 400 copies of the same worksheet in different names.
Any idea's of how i can do this as easy as possible?


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,123
Default Save several copies of the same worksheet

Do you have a list of client names in Excel ?
We can use this list to name the workbooks then

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"ayeshasid" wrote in message ...
Hi

It's a clientlist, so i have to name them by each clients name, to make
changes on them later, but they all have to look the same way from the
beginning....

Ron de Bruin skrev:

Hi ayeshasid

I have to save 400 copies of the same

Worksheet or workbook ?

How do you want to name them ?


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"ayeshasid" wrote in message ...
hi.
I have to save 400 copies of the same worksheet in different names.
Any idea's of how i can do this as easy as possible?


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default Save several copies of the same worksheet

Yes, i do have the client list in excel
how do i proside to do this then?

Ron de Bruin skrev:

Do you have a list of client names in Excel ?
We can use this list to name the workbooks then

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"ayeshasid" wrote in message ...
Hi

It's a clientlist, so i have to name them by each clients name, to make
changes on them later, but they all have to look the same way from the
beginning....

Ron de Bruin skrev:

Hi ayeshasid

I have to save 400 copies of the same
Worksheet or workbook ?

How do you want to name them ?


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"ayeshasid" wrote in message ...
hi.
I have to save 400 copies of the same worksheet in different names.
Any idea's of how i can do this as easy as possible?




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,123
Default Save several copies of the same worksheet

Try this macro with the names in column A on the activesheet
Change this path
"C:\Users\Ron\test\"

Sub test()
Dim cell As Range
Application.ScreenUpdating = False
For Each cell In Columns("A").SpecialCells(xlCellTypeConstants)
ThisWorkbook.SaveCopyAs "C:\Users\Ron\test\" & cell.Value & ".xls"
Next cell
Application.ScreenUpdating = True
End Sub

Copy the macro in a normal module

Alt F11
Insert module
Paste it in the module
Alt q to go back to Excel

You can run the macro with Alt-F8
select the macro and press Run




--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"ayeshasid" wrote in message ...
Yes, i do have the client list in excel
how do i proside to do this then?

Ron de Bruin skrev:

Do you have a list of client names in Excel ?
We can use this list to name the workbooks then

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"ayeshasid" wrote in message ...
Hi

It's a clientlist, so i have to name them by each clients name, to make
changes on them later, but they all have to look the same way from the
beginning....

Ron de Bruin skrev:

Hi ayeshasid

I have to save 400 copies of the same
Worksheet or workbook ?

How do you want to name them ?


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"ayeshasid" wrote in message ...
hi.
I have to save 400 copies of the same worksheet in different names.
Any idea's of how i can do this as easy as possible?


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,123
Default Save several copies of the same worksheet

Another way is to use Filecopy
http://www.rondebruin.nl/folder.htm

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"Ron de Bruin" wrote in message ...
Try this macro with the names in column A on the activesheet
Change this path
"C:\Users\Ron\test\"

Sub test()
Dim cell As Range
Application.ScreenUpdating = False
For Each cell In Columns("A").SpecialCells(xlCellTypeConstants)
ThisWorkbook.SaveCopyAs "C:\Users\Ron\test\" & cell.Value & ".xls"
Next cell
Application.ScreenUpdating = True
End Sub

Copy the macro in a normal module
Alt F11 Insert module Paste it in the module Alt q to go back to Excel
You can run the macro with Alt-F8 select the macro and press Run




--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"ayeshasid" wrote in message ...
Yes, i do have the client list in excel
how do i proside to do this then?

Ron de Bruin skrev:

Do you have a list of client names in Excel ?
We can use this list to name the workbooks then

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"ayeshasid" wrote in message ...
Hi

It's a clientlist, so i have to name them by each clients name, to make changes on them later, but they all have to look the
same way from the beginning....

Ron de Bruin skrev:

Hi ayeshasid

I have to save 400 copies of the same
Worksheet or workbook ?

How do you want to name them ?


--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"ayeshasid" wrote in message ...
hi.
I have to save 400 copies of the same worksheet in different names.
Any idea's of how i can do this as easy as possible?



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
create 50 copies of a worksheet in the same file Lynn Excel Worksheet Functions 5 December 22nd 06 04:17 AM
How can I Make 3 copies of one worksheet Page? VHall Excel Worksheet Functions 1 July 2nd 06 07:05 PM
Multiple copies of a template worksheet in one file BillD Excel Discussion (Misc queries) 2 May 17th 06 03:49 PM
printing multiple copies of a worksheet bloodgroove Excel Discussion (Misc queries) 10 September 20th 05 05:47 PM
Why does an excel worksheet default to 24 copies when printing Reg589 Excel Worksheet Functions 1 February 17th 05 01:03 PM


All times are GMT +1. The time now is 03:53 AM.

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"