After much searching i found a macro to incrementaly step an order code for our company data capture sheets:
but - if i want to do a large print run of say 200 sheets, it would be beneficial to have the sheets printed in reverse order but keep the number increment in the correct order....
Is this possible please ?
Any help would be really helpful, Thanks
Code:
Sub print_sheet()
P = InputBox("How many sheets?")
For I = 1 To P Step 1
Worksheets("Sheet1").PrintOut
Range("C3").Value = Range("C3").Value + 1
Next I
End Sub
Is this possible please ?
Any help would be really helpful, Thanks