Thread
:
macro to print the first two pages of every tab in excel?
View Single Post
#
1
Posted to microsoft.public.excel.programming
JE McGimpsey
external usenet poster
Posts: 4,624
macro to print the first two pages of every tab in excel?
One way:
Public Sub PrintFirstTwoPagesOfEachWorksheet()
Dim ws As Worksheet
For Each ws In Worksheets
ws.PrintOut From:=1, To:=2
Next ws
End Sub
In article ,
Felipe wrote:
please help !
Reply With Quote
JE McGimpsey
View Public Profile
Find all posts by JE McGimpsey