I have some code to print from a loop and this works fine apart from it's making a new document from each loop. What I want is to be able to print all pages to a single document. Here is the code I have
Code
Dim lStart As Date, lEnd As Date, lInterval As Integer
Dim lPrint As Long
lStart = Date
lEnd = Date + 7
lInterval = 1
For lPrint = lStart To lEnd Step lInterval
[A1] = lPrint
ActiveSheet.PrintOut
Next lPrint
Display More
I'm printing to a pdf creator btw so that I can check for errors before printing to paper