+ Reply to Thread
Results 1 to 4 of 4

printing mutliple spreadsheets that are not in the same workbook

  1. #1
    lindsey
    Guest

    printing mutliple spreadsheets that are not in the same workbook

    how do i print multiple spreadsheets at the same time, with one print
    command, that are not in the same workbook? can this be done?

  2. #2
    Dave Peterson
    Guest

    Re: printing mutliple spreadsheets that are not in the same workbook

    I don't think you can.

    Maybe you could have a macro that prints the sheets that you want from any open
    workbook. You'll only have to do one thing, but it'll kind of look like you're
    printing all at once.

    lindsey wrote:
    >
    > how do i print multiple spreadsheets at the same time, with one print
    > command, that are not in the same workbook? can this be done?


    --

    Dave Peterson

  3. #3
    lindsey
    Guest

    Re: printing mutliple spreadsheets that are not in the same workbo

    how do you do that?

    "Dave Peterson" wrote:

    > I don't think you can.
    >
    > Maybe you could have a macro that prints the sheets that you want from any open
    > workbook. You'll only have to do one thing, but it'll kind of look like you're
    > printing all at once.
    >
    > lindsey wrote:
    > >
    > > how do i print multiple spreadsheets at the same time, with one print
    > > command, that are not in the same workbook? can this be done?

    >
    > --
    >
    > Dave Peterson
    >


  4. #4
    Dave Peterson
    Guest

    Re: printing mutliple spreadsheets that are not in the same workbo

    Something like:

    Option Explicit
    Sub printall()

    Dim wkbk As Workbook
    Dim myWindow As Window

    For Each wkbk In Application.Workbooks
    For Each myWindow In wkbk.Windows
    If myWindow.Visible = True Then
    wkbk.PrintOut preview:=True
    Exit For
    End If
    Next myWindow
    Next wkbk
    End Sub


    If you're new to macros, you may want to read David McRitchie's intro at:
    http://www.mvps.org/dmcritchie/excel/getstarted.htm

    lindsey wrote:
    >
    > how do you do that?
    >
    > "Dave Peterson" wrote:
    >
    > > I don't think you can.
    > >
    > > Maybe you could have a macro that prints the sheets that you want from any open
    > > workbook. You'll only have to do one thing, but it'll kind of look like you're
    > > printing all at once.
    > >
    > > lindsey wrote:
    > > >
    > > > how do i print multiple spreadsheets at the same time, with one print
    > > > command, that are not in the same workbook? can this be done?

    > >
    > > --
    > >
    > > Dave Peterson
    > >


    --

    Dave Peterson

+ 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