Karen has attended:
Excel VBA Intro Intermediate course
Setting up a print option in VB
How can you set a print option in VB?
Thanks
RE: Setting up a print option in VB
Hi Karen
Thank you for your question
You can do this using the printout method of the active window object. You first need to write the code to select the sheet that you want printing and then use the following line of code
ActiveWindow.SelectedSheets.PrintOut Copies:=1
I suggest that you look up the printout method in the object browser to get a full understanding of its parameters
Regards
Stephen