Hello there Masters of VBA..
I have 10 pages in a worksheet of excel. I'd like to print out page 2, 4, 6 and 8 by using VBA code.
My Question :
Is there any script of VBA which can printout those selected pages in a sheet
INSTEAD OF
Having to script like this :
Worksheets("Sheet1").PrintOut From:=2, To:=2
Worksheets("Sheet1").PrintOut From:=4, To:=4
Worksheets("Sheet1").PrintOut From:=6, To:=6
Worksheets("Sheet1").PrintOut From:=8, To:=8
Thanks in advance
Bookmarks