Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a spreadsheet with a list of reports for each department of the office
I work in, each department's list is on its own tab. Is there an easy way to export this workbook so that each sheet is its own seperate workbook? this way I can email a department only their list without them getting every other department's info? I don't want to have to copy each sheet into a blank workbook and save it that way. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
"Nih" wrote in message
... I have a spreadsheet with a list of reports for each department of the office I work in, each department's list is on its own tab. Is there an easy way to export this workbook so that each sheet is its own seperate workbook? this way I can email a department only their list without them getting every other department's info? I don't want to have to copy each sheet into a blank workbook and save it that way. Right click each sheet's tab, then click "move or copy". In "To book", choose "new book". |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 MS Excel MVP On Fri, 9 May 2008 05:59:01 -0700, Nih wrote: I have a spreadsheet with a list of reports for each department of the office I work in, each department's list is on its own tab. Is there an easy way to export this workbook so that each sheet is its own seperate workbook? this way I can email a department only their list without them getting every other department's info? I don't want to have to copy each sheet into a blank workbook and save it that way. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
See also this macro for Excel 97-2007
http://www.rondebruin.nl/copy6.htm -- Regards Ron de Bruin http://www.rondebruin.nl/tips.htm "Nih" wrote in message ... I have a spreadsheet with a list of reports for each department of the office I work in, each department's list is on its own tab. Is there an easy way to export this workbook so that each sheet is its own seperate workbook? this way I can email a department only their list without them getting every other department's info? I don't want to have to copy each sheet into a blank workbook and save it that way. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Is it possible to save only a specific sheet within a workbook | Excel Worksheet Functions | |||
Save Sheet as Workbook | Excel Discussion (Misc queries) | |||
Select sheet tabs in workbook & save to separate workbook files | Excel Worksheet Functions | |||
Can I only save one sheet out of the workbook? | Excel Discussion (Misc queries) | |||
Save a single sheet from a workbook | Excel Discussion (Misc queries) |