Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Scudo
 
Posts: n/a
Default multiple page printing

On a spreadsheet due to the size of it takes 5 pages to print it off.
Currently I `set` each page as a print area then print so I have to do this
5 times in order to print off the full spreadsheet page. Is there a way to
press `print` and it will print off the 5 pre set `print areas` ? without me
having to go throught the `set print area` / `print`/`clear print area` then
reset for next section.

thanks


  #2   Report Post  
Paul Sheppard
 
Posts: n/a
Default


Scudo Wrote:
On a spreadsheet due to the size of it takes 5 pages to print it off.
Currently I `set` each page as a print area then print so I have to do
this
5 times in order to print off the full spreadsheet page. Is there a way
to
press `print` and it will print off the 5 pre set `print areas` ?
without me
having to go throught the `set print area` / `print`/`clear print area`
then
reset for next section.

thanks


Hi Scudo

Try View Page Break View


--
Paul Sheppard


------------------------------------------------------------------------
Paul Sheppard's Profile: http://www.excelforum.com/member.php...o&userid=24783
View this thread: http://www.excelforum.com/showthread...hreadid=397124

  #3   Report Post  
Bernard Liengme
 
Posts: n/a
Default

Have you tried View|Page Break View and set page breaks? Set print area to
cover all the material needed to print
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"Scudo" wrote in message
. ..
On a spreadsheet due to the size of it takes 5 pages to print it off.
Currently I `set` each page as a print area then print so I have to do
this
5 times in order to print off the full spreadsheet page. Is there a way to
press `print` and it will print off the 5 pre set `print areas` ? without
me
having to go throught the `set print area` / `print`/`clear print area`
then
reset for next section.

thanks




  #4   Report Post  
Duke Carey
 
Posts: n/a
Default

Is there some reason you can't set the entire print range at once? Are the 5
ranges discontiguous?

If that's the problem, name each of the 5 ranges, something like Page1,
Page2, etc. Then go to File - Page Setup and navigate to the Sheet tab. In
the Print Area box type all the range names separated by commas:

page1, page2, page3, page4, page5

Now each range will print on a separate page.

"Scudo" wrote:

On a spreadsheet due to the size of it takes 5 pages to print it off.
Currently I `set` each page as a print area then print so I have to do this
5 times in order to print off the full spreadsheet page. Is there a way to
press `print` and it will print off the 5 pre set `print areas` ? without me
having to go throught the `set print area` / `print`/`clear print area` then
reset for next section.

thanks



  #5   Report Post  
Scudo
 
Posts: n/a
Default

I will try to sort on info you have given.

Reason for 5 pages is that the five sections relate to monday - friday and I
want each day seperate, its nothing complicated just names and addresses so
no formulas or anything.


"Duke Carey" wrote in message
...
Is there some reason you can't set the entire print range at once? Are

the 5
ranges discontiguous?

If that's the problem, name each of the 5 ranges, something like Page1,
Page2, etc. Then go to File - Page Setup and navigate to the Sheet tab.

In
the Print Area box type all the range names separated by commas:

page1, page2, page3, page4, page5

Now each range will print on a separate page.

"Scudo" wrote:

On a spreadsheet due to the size of it takes 5 pages to print it off.
Currently I `set` each page as a print area then print so I have to do

this
5 times in order to print off the full spreadsheet page. Is there a way

to
press `print` and it will print off the 5 pre set `print areas` ?

without me
having to go throught the `set print area` / `print`/`clear print area`

then
reset for next section.

thanks







  #6   Report Post  
Scudo
 
Posts: n/a
Default

Stoll not getting this, spreadsheet only appears to accept one page break, I
know its me not setting it correctly,
Any advice please.
thanks

"Scudo" wrote in message
. ..
I will try to sort on info you have given.

Reason for 5 pages is that the five sections relate to monday - friday and

I
want each day seperate, its nothing complicated just names and addresses

so
no formulas or anything.


"Duke Carey" wrote in message
...
Is there some reason you can't set the entire print range at once? Are

the 5
ranges discontiguous?

If that's the problem, name each of the 5 ranges, something like Page1,
Page2, etc. Then go to File - Page Setup and navigate to the Sheet

tab.
In
the Print Area box type all the range names separated by commas:

page1, page2, page3, page4, page5

Now each range will print on a separate page.

"Scudo" wrote:

On a spreadsheet due to the size of it takes 5 pages to print it off.
Currently I `set` each page as a print area then print so I have to do

this
5 times in order to print off the full spreadsheet page. Is there a

way
to
press `print` and it will print off the 5 pre set `print areas` ?

without me
having to go throught the `set print area` / `print`/`clear print

area`
then
reset for next section.

thanks







  #7   Report Post  
Gord Dibben
 
Posts: n/a
Default

Scudo

Can you sort the entire range by the column with day of week?

If so, you could then manually insert a page break at each change of day.

Or run this macro which looks at Column A after it is sorted and inserts a
page break at a change in data.

Sub InsertBreaks()
Set Rng = Range(Cells(2, 1), _
Cells(Rows.Count, 1).End(xlUp))
For Each Cell In Rng
If Trim(Cell.Value) < _
Trim(Cell.Offset(-1, 0).Value) Then
ActiveSheet.HPageBreaks.Add Cell
End If
Next
End Sub


Gord Dibben Excel MVP

On Sun, 21 Aug 2005 10:23:26 GMT, "Scudo" wrote:

Stoll not getting this, spreadsheet only appears to accept one page break, I
know its me not setting it correctly,
Any advice please.
thanks

"Scudo" wrote in message
...
I will try to sort on info you have given.

Reason for 5 pages is that the five sections relate to monday - friday and

I
want each day seperate, its nothing complicated just names and addresses

so
no formulas or anything.


"Duke Carey" wrote in message
...
Is there some reason you can't set the entire print range at once? Are

the 5
ranges discontiguous?

If that's the problem, name each of the 5 ranges, something like Page1,
Page2, etc. Then go to File - Page Setup and navigate to the Sheet

tab.
In
the Print Area box type all the range names separated by commas:

page1, page2, page3, page4, page5

Now each range will print on a separate page.

"Scudo" wrote:

On a spreadsheet due to the size of it takes 5 pages to print it off.
Currently I `set` each page as a print area then print so I have to do

this
5 times in order to print off the full spreadsheet page. Is there a

way
to
press `print` and it will print off the 5 pre set `print areas` ?

without me
having to go throught the `set print area` / `print`/`clear print

area`
then
reset for next section.

thanks







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 Column in Multiple Segments on One Page Owen Leibman Excel Discussion (Misc queries) 5 November 28th 06 05:23 AM
printing multiple page workbook Ntisch Excel Discussion (Misc queries) 0 August 1st 05 05:35 PM
Printing multiple worksheets on one page Ben :Dillon Excel Discussion (Misc queries) 1 April 6th 05 11:02 PM
Excel - printing multiple worksheets on one page BGA Excel Discussion (Misc queries) 1 February 18th 05 02:05 PM
Printing multiple areas on the 1 page Bonny Excel Discussion (Misc queries) 2 February 14th 05 04:13 PM


All times are GMT +1. The time now is 08:15 PM.

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"