G Guest Jul 15, 2005 #1 In MS Word it is possible to select an option to print pages in reverse order. Can I do this in Excel and if so, how?
In MS Word it is possible to select an option to print pages in reverse order. Can I do this in Excel and if so, how?
D Dave Peterson Jul 15, 2005 #2 Some printers support this option and you can choose it from the: File|Print|Properties button (each printer is different, though) If your printer doesn't support this, you could use a macro: Option Explicit Sub testme01() Dim TotalPages As Long Dim pCtr As Long TotalPages = ExecuteExcel4Macro("GET.DOCUMENT(50)") For pCtr = TotalPages To 1 Step -1 ActiveSheet.PrintOut _ Preview:=True, _ From:=pCtr, to:=pCtr Next pCtr End Sub This actually sends individual print jobs to the printer. If your printer prints page separators, you may not want to do this. Change the preview:=true to False when you're done testing. If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm
Some printers support this option and you can choose it from the: File|Print|Properties button (each printer is different, though) If your printer doesn't support this, you could use a macro: Option Explicit Sub testme01() Dim TotalPages As Long Dim pCtr As Long TotalPages = ExecuteExcel4Macro("GET.DOCUMENT(50)") For pCtr = TotalPages To 1 Step -1 ActiveSheet.PrintOut _ Preview:=True, _ From:=pCtr, to:=pCtr Next pCtr End Sub This actually sends individual print jobs to the printer. If your printer prints page separators, you may not want to do this. Change the preview:=true to False when you're done testing. If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm
G Guest Jul 15, 2005 #3 Thank you for the quick reponse. I guess this means that Excel does not support "reverse print order" in the way that Word does?
Thank you for the quick reponse. I guess this means that Excel does not support "reverse print order" in the way that Word does?
D Dave Peterson Jul 15, 2005 #4 Yep. But maybe your printer does? Thank you for the quick reponse. I guess this means that Excel does not support "reverse print order" in the way that Word does? Click to expand...
Yep. But maybe your printer does? Thank you for the quick reponse. I guess this means that Excel does not support "reverse print order" in the way that Word does? Click to expand...