acaPAWN7
Board Regular
- Joined
- Oct 11, 2006
- Messages
- 71
Hye. I'm trying to find a macro that can print selected worksheet only. This is the macro for my current print method:
As you can see, this function will print all the worksheet in the workbook (my workbook contains 11 worksheets). But I don't want the unnecessary worksheets to be printed. The selected worksheets (to be print) are:
1. PC
2. LD
3. C&M
4. P&L
5. CF
6. NPV&IRR
7. FH
8. Option
Is there any way to modify my macro at the top for specifying the worksheet printings? Hope anyone can help me. Thanks
Code:
Sub Print_all()
ActiveWorkbook.PrintOut Copies:=1, Collate:=True
End Sub
As you can see, this function will print all the worksheet in the workbook (my workbook contains 11 worksheets). But I don't want the unnecessary worksheets to be printed. The selected worksheets (to be print) are:
1. PC
2. LD
3. C&M
4. P&L
5. CF
6. NPV&IRR
7. FH
8. Option
Is there any way to modify my macro at the top for specifying the worksheet printings? Hope anyone can help me. Thanks