Hi Linda,
The thread for your other post can be referenced by:
http://google.com/[email protected]
I supplied an answer there as well for completeness. Wasn't
immediately seen that you still had a question until the words
"can you help", either that or some of us were asleep.
The macro you used is invoked twice in other words there are
two printings: one for page 1 and one for the remainder of
the pages. You cannot simulate this in Print Preview but
you can look at two separate Print Previews.
Instead of
ActiveWindow.SelectedSheets.PrintOut From:=1, To:=1
try
ActiveWindow.SelectedSheets..PrintPreview From:=1, To:=1
and the other PrintOut as well.
which was found by recording a macro that did a Print Preview
and substituting the code into the above.
ActiveWindow.SelectedSheets.PrintPreview