group multiple worksheets where page numbering for each worksheet is x of y (Page of Pages)

schwachmama

New Member
Joined
Feb 16, 2011
Messages
3
I have 1 workbook with 35 worksheets where each worksheet is &[page] of &[pages]. I want to select all worksheets and pdf but excel is giving me the total number of pages for all selected worksheets (e.g. worksheet one will have 4 pages but it will say "1 of 209" instead of "1 of 4"). Printing one worksheet at a time is trying, takes too long, and most of my workbooks have this issue. Is there any trick? I have limited VBA experience.
 

Excel Facts

How can you automate Excel?
Press Alt+F11 from Windows Excel to open the Visual Basic for Applications (VBA) editor.
I have 1 workbook with 35 worksheets where each worksheet is &[page] of &[pages]. I want to select all worksheets and pdf but excel is giving me the total number of pages for all selected worksheets (e.g. worksheet one will have 4 pages but it will say "1 of 209" instead of "1 of 4"). Printing one worksheet at a time is trying, takes too long, and most of my workbooks have this issue. Is there any trick? I have limited VBA experience.


Use this macro below or download ASAP utility on this link http://www.asap-utilities.com/download-asap-utilities.php



Sub PrintSheets()
' This macro prints multiple selected sheets one at a time

Dim Sh As Object

For Each Sh In ActiveWindow.SelectedSheets
Sh.PrintOut
Next Sh

End Sub



Hope it helps:)
 
Upvote 0

Forum statistics

Threads
1,223,886
Messages
6,175,194
Members
452,616
Latest member
intern444

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