Is it possible to print JUST the odd numbered pages from multiple tabs?

Wulf

Active Member
Joined
Dec 1, 2004
Messages
395
Office Version
  1. 365
Platform
  1. Windows
Is it possible to print JUST the odd numbered pages from multiple tabs?
I have a workbook with 32 tabs. 27 of them are Performance Enhancement Evaluations. Each of those 27 tabs has two pages if printed out (a front and back). Is it possible to print out JUST the front (the odd number <1>) from each tab in a single print job.

I can print everything out in a single print job by grouping the tabs, but I don't need the back.

Thanks.
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
I have seen a selection choice of "Print odd pages only", "Print even pages onlky", but, I don't find such choices in my present printer. I am almost 100% sure that this choice is contained in the paticular printer's driver.
 
Upvote 0
It sounds like you just want to print the first page of each worksheet, and not strictly the odd numbered pages, correct?

perhaps

Code:
Dim ws As Worksheet
For Each ws In ThisWorkbook.Worksheets
    ws.PrintOut 1, 1
Next ws
 
Upvote 0

Forum statistics

Threads
1,213,484
Messages
6,113,924
Members
448,533
Latest member
thietbibeboiwasaco

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