I have a script that copies some data to a sheet and afterwards make a copy to the end of the file. The file is then repoulated with new data to be copied again to the end of the sheet. That script work fine. The only problem i have is that when i want to print out all sheets it start from the last one created instead of the first sheet. So for exemple i have 60 sheets and when they are printed it start 60,59,58...1.
What can i do to make it print from page 1 to page 60 for exemple.
Thank you.
Sub Print_All()
For i = 4 To ActiveWorkbook.Sheets.Count
Worksheets(i).Select
ActiveSheet.PrintOut
Next
i = i + 1
End Sub