printing number of copies

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I change the number of copies to print.
For example: In cell G22 is the value 11. So I want to print 11 copies, etc.
I supose a macro ... and than ???
Thanks for your support !
Rob.
 
Try this one Rob

Sub test()
With ActiveSheet
.PrintOut copies:=.Range("G22").Value
End With
End Sub
 
Back
Top