+ Reply to Thread
Results 1 to 3 of 3

Print 1st page as Landscape and 2nd page as Portrait, HOW ??

  1. #1
    Corey
    Guest

    Print 1st page as Landscape and 2nd page as Portrait, HOW ??

    I have set the Print Area in my WorkSheet to cover the area I need, but the
    1st page is in LANDSCAPE and the page following is PORTRAIT.

    Is there a way I can have this set to print automatically setting the 1st
    page and 2nd pages to the required style?

    Corey....



  2. #2
    Corey
    Guest

    Re: Print 1st page as Landscape and 2nd page as Portrait, HOW ??

    With ActiveSheet
    ..PageSetup.Orientation = xlLandscape
    ..PrintOut From:=1, To:=1
    ..PageSetup.Orientation = xlPortrait
    ..PrintOut From:=2, To:=2
    End With

  3. #3
    Jim May
    Guest

    Re: Print 1st page as Landscape and 2nd page as Portrait, HOW ??

    Perhaps this will help...

    I have a 6 sheet workbook:
    With Sheet1 named "Printing_Specs" (W/O the Quotes)
    and in Range B7:C11 I have the following:

    Opinion P (< P = Potrait L = Landscape)
    Balance Sheet L
    Income Statement P
    Cash Flow L
    Notes to Statements P

    The following macro works fine for me:

    Sub multi_print()
    Dim rng As Range
    Dim i As Integer
    Set rng = Worksheets("Printing_Specs").Range("B7:B11")
    For i = 2 To rng.Count + 1
    With Worksheets(i)
    If rng(i).Offset(0, 1).Value = "P" Then
    .PageSetup.Orientation = xlPortrait
    .PrintPreview 'Change to PrintOut to bypass Preview
    Else
    .PageSetup.Orientation = xlLandscape
    .PrintPreview 'Change to PrintOut to bypass Preview
    End If
    End With
    Next
    End Sub

    Hope this helps,
    Jim May


    "Corey" <[email protected]> wrote in message
    news:[email protected]:

    > I have set the Print Area in my WorkSheet to cover the area I need, but the
    > 1st page is in LANDSCAPE and the page following is PORTRAIT.
    >
    > Is there a way I can have this set to print automatically setting the 1st
    > page and 2nd pages to the required style?
    >
    > Corey....



+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1