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

  • Thread starter Thread starter tomb
  • Start date Start date
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.
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top