Printing button in excel 2003

N

Neil Holden

Hi all, is it possible to create a button to print to a certain printer?
Please bear in mind this is not my default printer?

Help would be much appreciated.
 
J

Jacob Skaria

'Why not leave this with user to select

Application.Dialogs(xldialogprint).show

OR

ActiveWindow.SelectedSheets.PrintOut Copies:=1, ActivePrinter:= _
"\\server\prntername:", Collate:=True
 
Top