close

Hi,

I've looked around and seen one answer to this that suggests a macro with a
button, but I don't want to go down that route.

So - how do I make excel print the whole workbook when print is selected?

I have a workbook with 3 worksheets, and the users will need to print off
all 3 to return to me. Rather than risk them print off only one and return
that, if it auto prints all 3 I should guarantee that i get all 3 returned.

Thanks,
You might try this. Put this code in your workbook's ThisWorkbook module:

Private Sub Workbook_BeforePrint(Cancel As Boolean)
Worksheets.Select
Application.OnTime Now, quot;SelectActivesheetquot;
End Sub

and put this in a standard module:

Sub SelectActivesheet()
ActiveSheet.Select
End Sub

--
Jim
quot;smfquot; gt; wrote in message
...
| Hi,
|
| I've looked around and seen one answer to this that suggests a macro with
a
| button, but I don't want to go down that route.
|
| So - how do I make excel print the whole workbook when print is selected?
|
| I have a workbook with 3 worksheets, and the users will need to print off
| all 3 to return to me. Rather than risk them print off only one and return
| that, if it auto prints all 3 I should guarantee that i get all 3
returned.
|
| Thanks,
|
|

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 software 的頭像
    software

    software

    software 發表在 痞客邦 留言(0) 人氣()