how to print 2 worksheets at once, one being a ref. to the other

T

tomb

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.
 
G

Gord Dibben

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

File>Print>Active 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
 
Top