Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Printing page 1 from each sheet in workbook

I have multiple worksheets with a similar layout.
I need to print only page X of 4 from each worksheet in the file.
How can I do this with vba?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,549
Default Printing page 1 from each sheet in workbook


See the PrintOut method in vba help.
--
Jim Cone
Portland, Oregon USA
http://tinyurl.com/SpecialPrint

..
..
..

"Steven Grimaldi"

wrote in message
...
I have multiple worksheets with a similar layout.
I need to print only page X of 4 from each worksheet in the file.
How can I do this with vba?
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 168
Default Printing page 1 from each sheet in workbook

On Jul 28, 12:10*pm, "Jim Cone" wrote:
See the PrintOut method in vba help.
--
Jim Cone
Portland, Oregon *USAhttp://tinyurl.com/SpecialPrint

.
.
.

"Steven Grimaldi"

wrote in ...
I have multiple worksheets with a similar layout.
I need to print only page X of 4 from each worksheet in the file.
How can I do this with vba?


Something like this ??

Sub printareafromsheets()
For i = 1 To 4
Sheets(i).Range("a1:z21").PrintPreview 'printout
Next
End Sub
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Printing a workbook but not getting page set-up results Karen S. Excel Discussion (Misc queries) 1 November 14th 07 11:46 PM
Printing a sheet onto 4 pages: page 2 is empty. WhytheQ Excel Discussion (Misc queries) 1 July 6th 06 04:38 PM
I want to put page no in a single sheet in excel while printing ravi Excel Worksheet Functions 1 September 21st 05 01:09 PM
Closing a workbook and printing a non-active page Sleeping Bear[_2_] Excel Programming 4 August 5th 05 01:47 PM
printing multiple page workbook Ntisch Excel Discussion (Misc queries) 0 August 1st 05 05:35 PM


All times are GMT +1. The time now is 02:45 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"