I have a workbook with a worksheet (Reports) listing all the reports I want to print
i have another worksheet (Calcs) which has all formulas pulling from other data sheets...this sheet has a validation drop down reading from the list of reports on the reports tab...once you change the drop down the formulas bring over the proper data...
so say i have 5 reports the current code i have will send it as 5 individual print jobs...is there a way to queue up the print jobs and then send all 5 as 1 combined print job?
NOTE: i'm trying to print to pdf and looking for 1 pdf file and not 5...
here is the current vba loop that is printing the reports
thanks in advance for any thoughts
i have another worksheet (Calcs) which has all formulas pulling from other data sheets...this sheet has a validation drop down reading from the list of reports on the reports tab...once you change the drop down the formulas bring over the proper data...
so say i have 5 reports the current code i have will send it as 5 individual print jobs...is there a way to queue up the print jobs and then send all 5 as 1 combined print job?
NOTE: i'm trying to print to pdf and looking for 1 pdf file and not 5...
here is the current vba loop that is printing the reports
Code:
For Each cell In shtReports.Range(shtReports.Cells(2, "A"), shtReports.Cells(shtReports.Cells(Rows.Count, "A").End(xlUp).Row, "A"))
shtCalcs.Range("D1").Value = cell.Value
shtCalcs.PrintOut copies:=1
Next
thanks in advance for any thoughts