Dear All
I use the following VBA code to print Invoices using a confirmation box on excel
Sub Print1()
Dim Answer As VbMsgBoxResult
Answer = MsgBox("CONFIRM", vbYesNo, "Run Macro")
If Answer = vbYes Then
ActiveSheet.PrintOut Copies:=2, Collate:=True
End If
End Sub
I want to print 3 copies i.e. "(ORIGINAL FOR RECIPIENT)" , "(DUPLICATE FOR TRANSPORTER)" and "(TRIPLICATE FOR SUPPLIER)" showing on the right hand corner of Invoices
Please note I dont need to print DUPLICATE all the time so I want a choice in the confirmation box to confirm to print Duplicate othewise print Original and Triplicate
Kindly Help
Regards
ABU
I use the following VBA code to print Invoices using a confirmation box on excel
Sub Print1()
Dim Answer As VbMsgBoxResult
Answer = MsgBox("CONFIRM", vbYesNo, "Run Macro")
If Answer = vbYes Then
ActiveSheet.PrintOut Copies:=2, Collate:=True
End If
End Sub
I want to print 3 copies i.e. "(ORIGINAL FOR RECIPIENT)" , "(DUPLICATE FOR TRANSPORTER)" and "(TRIPLICATE FOR SUPPLIER)" showing on the right hand corner of Invoices
Please note I dont need to print DUPLICATE all the time so I want a choice in the confirmation box to confirm to print Duplicate othewise print Original and Triplicate
Kindly Help
Regards
ABU