I've been given a task that could take a long time if done manually. But from looking around it seems it's possible to automate it. The steps I need to carry out are repetative, but I'm not sure how to iterate thorugh each workbok and then each sheet.
Any help graetfully appreciated.
My task is to:
- Look in a folder: (Source folder)
- Iterate through each workbook in that folder (Source file)
- Print each of the 4 worksheets (sheet name) in each workbook to a PostScript Printer (Printer Name/Path).
- Name the printed to file PS file = Source file+sheet name
- Final PS output files placed in final folder (destination folder)
- Original workbok closed and not saved.
I've searched for iteration VBA/Macro and have seen some ideas, but I'm unsure how the code looks when it's working through workbooks and worksheets.
Also, the PS printer is done thorugh Printing To File. Does this cause problems.
UPDATED WITH CODE I'VE TRIED SO FAR:
Sub Make_PS_Files()
Dim path2 As String, path3 As String
path2 = "Drive:\Source folder\"
path3 = " Drive:\Destination folder\"
Workbooks.Open Filename:=path2 + "File_Name.XLS"
Sheets("Specific_Sheet_Name1").Activate
Application.ActivePrinter = "\\PRINTER NAME\LOCATION:"
ActiveWindow.SelectedSheets.PrintOut copies:=1, PrintToFile:=True, Collate _
:=True, Prtofilename:=True
ActiveSheet.PrintOut copies:=1, Prtofilename:=path3 + " Specific_Sheet_Name1.ps"
Sheets("Specific_Sheet_Name2").Activate
Application.ActivePrinter = "\\VS PRINTER NAME\LOCATION:"
ActiveWindow.SelectedSheets.PrintOut copies:=1, PrintToFile:=True, Collate _
:=True, Prtofilename:=True
ActiveSheet.PrintOut copies:=1, Prtofilename:=path3 + " Specific_Sheet_Name2.ps"
Sheets("Specific_Sheet_Name3").Activate
Application.ActivePrinter = "\\ PRINTER NAME\LOCATION:"
ActiveWindow.SelectedSheets.PrintOut copies:=1, PrintToFile:=True, Collate _
:=True, Prtofilename:=True
ActiveSheet.PrintOut copies:=1, Prtofilename:=path3 + " Specific_Sheet_Name3.ps"
ActiveWorkbook.Close
Sheets("Specific_Sheet_Name4").Activate
Application.ActivePrinter = "\\ PRINTER NAME\LOCATION:"
ActiveWindow.SelectedSheets.PrintOut copies:=1, PrintToFile:=True, Collate _
:=True, Prtofilename:=True
ActiveSheet.PrintOut copies:=1, Prtofilename:=path3 + " Specific_Sheet_Name4.ps"
ActiveWorkbook.Close
End Sub
Apologies for not posting this last night when I posted. It seems very long winded for what it is doing. I thought it could be polished a bit mroe so it's more universal and can be pointed at any workbook and any number of sheets.
Not all the sheets have the Specific_Sheeet_Name, so I would like to iterate through without reference to the name.
Thanks again.
Application.ActivePrinteronce. Also, you should save the value ofActivePrinterbefore changing it and then reset it when you are done (or if an error occurs). – Harry Steinhilber Jan 27 '12 at 15:13