Distinct Print Layout for each page in a Worksheet

limetoad

New Member
Joined
Jun 10, 2013
Messages
8
Not sure if this is possible, but figured I'd check here just in case. I have a sheet that has 3 different pages on the same tab, and I'd like to be able to set the print layout/setup of each page in the sheet separately. More specifically, I want to print the first two pages at PageSetup.Zoom = 50 and the last page at PageSetup.Zoom = 100. Anyone know how I could do that? otherwise I have to put the 3rd page on a separate tab, and I have s many tabs that that will makes things even crazier. Any ideas?
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Copy the below code and paste it into ThisWorkbook module.
Macro should be allowed.
Rich (BB code):
' Put this code into Thisworkbook module
Private Sub Workbook_BeforePrint(Cancel As Boolean)
  Const MySheet = "Sheet1"  ' <-- Change to suit
  If Not ActiveSheet Is Sheets(MySheet) Then Exit Sub
  Application.EnableEvents = False
  With ActiveSheet
    .PageSetup.Zoom = 50
    .PrintOut 1, 2
    .PageSetup.Zoom = 100
    .PrintOut 3
    .PageSetup.Zoom = 50
  End With
  Cancel = True
  Application.EnableEvents = True
End Sub
 
Upvote 0
Thanks! That works almost perfectly... The only problem is that when I print to a PDF it creates 2 separate PDF files. Is there a way to combine the print jobs into one so that it prints out to one PDF?
 
Upvote 0
Hi,

If PDF printing has been mentioned in the start post then I would not participate in this thread ;)
Because PDF printer can’t provide suspending and feedback to VBA during printing for changing the PageSetup.zoom in Excel with farther resuming.

I think it's not suitable, but at least you can use Acrobat for manual joining PDFs into the single file.
Or try googling for free alternatives like pdfbinder (I am not familiar with any of them).
If you'll find command line utility then theoretically joining can be maid via VBA and Shell function.

Regards
 
Upvote 0

Forum statistics

Threads
1,214,585
Messages
6,120,394
Members
448,957
Latest member
Hat4Life

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top