+ Reply to Thread
Results 1 to 3 of 3

Help with Multiple Worksheet Setup

Hybrid View

  1. #1
    Brenda Rueter
    Guest

    Help with Multiple Worksheet Setup

    I have created a new workbook with 2 worksheets in Excel 2002. There is
    some text on both worksheets.

    Now I select both tabs, Sheet 1 and Sheet 2. I want to setup all worksheets
    to print 2 copies.

    With both tabs selected I go to Page Setup | Sheet | Options | Advanced |
    and change Copy Count to 2, non collated. Now when I go to File | Print I
    would expect to see 2 copies for both pages. For some reason it is not
    working. I see 2 copies for the last worksheet that I selected but only 1
    copy for the other worksheet.

    Is this not the correct procedure or is there a problem with my Excel? All
    help is appreciated. TIA!



  2. #2
    Gary L Brown
    Guest

    RE: Help with Multiple Worksheet Setup

    A Guess...
    As "Page Setup>Sheet>Options>Advanced " takes you to your printer's setup
    (not Excel's internal controls), your printer is only remembering the setup
    for the sheet that is active at the time you set it up.

    However, a simple macro may do what you want...

    Sub PrintMe()
    Dim wkst As Worksheet

    For Each wkst In Worksheets
    wkst.PrintOut Copies:=2, Collate:=True
    Next wkst

    End Sub


    HTH,
    --
    Gary Brown
    gary_brown@ge_NOSPAM.com
    If this post was helpful, please click the ''''Yes'''' button next to
    ''''Was this Post Helpfull to you?".


    "Brenda Rueter" wrote:

    > I have created a new workbook with 2 worksheets in Excel 2002. There is
    > some text on both worksheets.
    >
    > Now I select both tabs, Sheet 1 and Sheet 2. I want to setup all worksheets
    > to print 2 copies.
    >
    > With both tabs selected I go to Page Setup | Sheet | Options | Advanced |
    > and change Copy Count to 2, non collated. Now when I go to File | Print I
    > would expect to see 2 copies for both pages. For some reason it is not
    > working. I see 2 copies for the last worksheet that I selected but only 1
    > copy for the other worksheet.
    >
    > Is this not the correct procedure or is there a problem with my Excel? All
    > help is appreciated. TIA!
    >
    >
    >


  3. #3
    Brenda Rueter
    Guest

    Re: Help with Multiple Worksheet Setup

    Thanks for the idea. I'm working with a co-worker who says this used to
    work. So far I cannot manage to apply 2 copies to each worksheet globally,
    only individually. I thought it was perhaps a service pack issue. I have
    2002 SP3 but another co-worker with 2000 cannot get it to work either. A
    macro would no doubt work but I cannot go there for internal reasons.

    "Gary L Brown" <gary_brown@ge_NOSPAM.com> wrote in message
    news:32F215EF-0F32-42E4-93E2-25E0D07F9A53@microsoft.com...
    > A Guess...
    > As "Page Setup>Sheet>Options>Advanced " takes you to your printer's setup
    > (not Excel's internal controls), your printer is only remembering the

    setup
    > for the sheet that is active at the time you set it up.
    >
    > However, a simple macro may do what you want...
    >
    > Sub PrintMe()
    > Dim wkst As Worksheet
    >
    > For Each wkst In Worksheets
    > wkst.PrintOut Copies:=2, Collate:=True
    > Next wkst
    >
    > End Sub
    >
    >
    > HTH,
    > --
    > Gary Brown
    > gary_brown@ge_NOSPAM.com
    > If this post was helpful, please click the ''''Yes'''' button next to
    > ''''Was this Post Helpfull to you?".
    >
    >
    > "Brenda Rueter" wrote:
    >
    > > I have created a new workbook with 2 worksheets in Excel 2002. There is
    > > some text on both worksheets.
    > >
    > > Now I select both tabs, Sheet 1 and Sheet 2. I want to setup all

    worksheets
    > > to print 2 copies.
    > >
    > > With both tabs selected I go to Page Setup | Sheet | Options | Advanced

    |
    > > and change Copy Count to 2, non collated. Now when I go to File | Print

    I
    > > would expect to see 2 copies for both pages. For some reason it is not
    > > working. I see 2 copies for the last worksheet that I selected but only

    1
    > > copy for the other worksheet.
    > >
    > > Is this not the correct procedure or is there a problem with my Excel?

    All
    > > help is appreciated. TIA!
    > >
    > >
    > >




+ 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