He All,
I am not sure where to post this topic so I am sticking with the area I know and posting in Access/VBA. Sorry if this is a no no.
I am using code to print multiple copies of the same worksheet with consecutive page numbering.
This works great... Except I need my pages to be double sided and my printer only prints single sided and then you manually flip the paper and it prints on the other side. I was thinking if there was some way to print only odd and then only even numbers. I could then do a run through of 50 pages with only odd numbers, and then flip the pages and put them back in the printer, and print 50 pages of only even numbers. Anyway to implement this or a better solution?
Any help as always is very much appreciated... Thanks.
I am not sure where to post this topic so I am sticking with the area I know and posting in Access/VBA. Sorry if this is a no no.
I am using code to print multiple copies of the same worksheet with consecutive page numbering.
Code:
Sub MultiPrint() Dim PrintCount As Integer For PrintCount = 2 To 49 ActiveSheet.PageSetup.RightFooter = "Page " & PrintCount ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True Next End Sub
Any help as always is very much appreciated... Thanks.
Comment