Hi
I have a workbook with many sheets, and I would like to save some of them into a single pdf. The script I have below only saves the first sheet. Could somebody please help me out.
Thanks
Sub SavePDF()
Sheets(Array("Income Statement", "Membership List", "Expenses breakdown", "Budget")). _
Select
ActiveSheet.PrintOut Copies:=1, Collate:=True, ActivePrinter:="Adobe PDF"
End Sub
I have a workbook with many sheets, and I would like to save some of them into a single pdf. The script I have below only saves the first sheet. Could somebody please help me out.
Thanks
Sub SavePDF()
Sheets(Array("Income Statement", "Membership List", "Expenses breakdown", "Budget")). _
Select
ActiveSheet.PrintOut Copies:=1, Collate:=True, ActivePrinter:="Adobe PDF"
End Sub