Hello,
With the toolbar "forms" you can create a button on a sheet. Right-clicking you can assign a macro to it.
the macro for printing can be created by using the recorder "tools/macro/record new macro" and just do what you would do manualy. It would look something like below
Sub Macro1()
Sheets("Sheet2").Select
Application.ActivePrinter = "name of printer"
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
Sheets("Sheet1").Select
End Sub