View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
JE McGimpsey JE McGimpsey is offline
external usenet poster
 
Posts: 4,624
Default PrintPreview Question

This works for me. You should be able to modify it:

Dim wsSheet As Worksheet
For Each wsSheet In ActiveWindow.SelectedSheets
wsSheet.PrintOut From:=3, To:=5, Preview:=True
Next wsSheet


In article ,
(JimP) wrote:

What I'm questioning, is - Is there a way to initiate a PrintPreview
at a specific start page?