View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben Gord Dibben is offline
external usenet poster
 
Posts: 22,906
Default how to print 2 worksheets at once, one being a ref. to the other

Select "main" worksheet and CTRL + Click on other sheet.

FilePrintActive Sheet(s)

You could record a macro whilst doing this.

Will end up with code like this.

Sub Macro1()
Sheets(Array("main", "othersheet)).Select
ActiveWindow.SelectedSheets.PrintOut
End Sub

Assign to button or shortcut key or just run from Alt + F8


Gord Dibben MS Excel MVP

On Mon, 14 Jan 2008 14:13:02 -0800, tomb wrote:

I would like to print an additional worksheet whenever I choose to print a
'main' worksheet.
This additional worksheet has information thta is referenced in the main
worksheet.