I have created a macro to export the sheet template to PDF:
ActiveWorkbook.Sheets(\"Sheet2\").ExportAsFixedFormat Type:=xlTypePDF, Filename:= _ ActiveWorkbook.
if you have adobe printer installed then just use below code to get a pdf
sub Sample() ActiveWorkbook.Sheets("Sheet2").Activate ActiveSheet.Printout End Sub