Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hi, Does anyone have any suggestions to have excel automatically Save eac Sheet in a workbook as a separate file? Thank -- STEVE ----------------------------------------------------------------------- STEVEB's Profile: http://www.excelforum.com/member.php...nfo&userid=187 View this thread: http://www.excelforum.com/showthread.php?threadid=40094 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You did not say where you wanted it saved or by what name so here is a basic
shell that you can modify as necessary. Sub SaveSheets() Dim wks As Worksheet Dim wbk As Workbook For Each wks In Worksheets wks.Copy Set wbk = ActiveWorkbook wbk.SaveAs ThisWorkbook.Path & "\" & wks.Name Next wks End Sub -- HTH... Jim Thomlinson "STEVEB" wrote: Hi, Does anyone have any suggestions to have excel automatically Save each Sheet in a workbook as a separate file? Thanks -- STEVEB ------------------------------------------------------------------------ STEVEB's Profile: http://www.excelforum.com/member.php...fo&userid=1872 View this thread: http://www.excelforum.com/showthread...hreadid=400941 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Thanks Jim! Everything worked great! I really appreciate your help! -- STEVEB ------------------------------------------------------------------------ STEVEB's Profile: http://www.excelforum.com/member.php...fo&userid=1872 View this thread: http://www.excelforum.com/showthread...hreadid=400941 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Split text file into Excel sheet and separate the final results intoa new sheet | Excel Worksheet Functions | |||
Retriving Values from a separate sheet of a different file | Excel Worksheet Functions | |||
Saving a sheet as a separate file | Excel Discussion (Misc queries) | |||
How do I save each sheet as a separate .xls file by using macro? | Excel Programming | |||
How to save each sheet as a separate excel-file | Excel Programming |