Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Printing subtotals on each page

I want to print out a spread sheet with subtotals on each page but the number
of rows and height of rows maybe different each time and I don't want to have
to manually adjust the print area and move the subtotal row around. Is there
anyway to do this automatically in Excel or do I need something with a
reporting tool.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 25
Default Printing subtotals on each page

On Mar 25, 10:52 pm, slopsjon
wrote:
I want to print out a spread sheet with subtotals on each page but the number
of rows and height of rows maybe different each time and I don't want to have
to manually adjust the print area and move the subtotal row around. Is there
anyway to do this automatically in Excel or do I need something with a
reporting tool.


If you go to subtotals on the menu instead of writing your own
subtotal function just check "Page break between groups"

Per Erik
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Printing subtotals on each page

Thanks for the reply. I tried the Subtotals from the menu but that just seems
to Page Break Groups but doesn't put a subtotal on a page that over runs more
than one page. I only have one list of data with no grouping and need a
subtotal of columns on each page.
e.g.
Page 1
row
row
row
end of page running total
Page 2
row
row
row
end of page running total
Page 3
row
row
row
last page Total

Is that possible? Ta.

"Per Erik Midtrød" wrote:

On Mar 25, 10:52 pm, slopsjon
wrote:
I want to print out a spread sheet with subtotals on each page but the number
of rows and height of rows maybe different each time and I don't want to have
to manually adjust the print area and move the subtotal row around. Is there
anyway to do this automatically in Excel or do I need something with a
reporting tool.


If you go to subtotals on the menu instead of writing your own
subtotal function just check "Page break between groups"

Per Erik

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Printing subtotals on each page

It is not possible using the Data | Subtotals routine - you would need
your own VBA routine to do that.

Pete

On Mar 26, 12:56*am, slopsjon
wrote:
Thanks for the reply. I tried the Subtotals from the menu but that just seems
to Page Break Groups but doesn't put a subtotal on a page that over runs more
than one page. I only have one list of data with no grouping and need a
subtotal of columns on each page.
e.g.
Page 1
row
row
row
end of page running total
Page 2
row
row
row
end of page running total
Page 3
row
row
row
last page Total

Is that possible? Ta.



"Per Erik Midtrød" wrote:
On Mar 25, 10:52 pm, slopsjon
wrote:
I want to print out a spread sheet with subtotals on each page but the number
of rows and height of rows maybe different each time and I don't want to have
to manually adjust the print area and move the subtotal row around. Is there
anyway to do this automatically in Excel or do I need something with a
reporting tool.


If you go to subtotals on the menu instead of writing your own
subtotal function just check "Page break between groups"


Per Erik- Hide quoted text -


- Show quoted text -


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Printing subtotals on each page

Thanks for the reply.

Does that mean I would have to work out how many rows and height of cells
will fit on a page with a row of subtotals. In other words would I have to
write my own reporting tool.

"Pete_UK" wrote:

It is not possible using the Data | Subtotals routine - you would need
your own VBA routine to do that.

Pete

On Mar 26, 12:56 am, slopsjon
wrote:
Thanks for the reply. I tried the Subtotals from the menu but that just seems
to Page Break Groups but doesn't put a subtotal on a page that over runs more
than one page. I only have one list of data with no grouping and need a
subtotal of columns on each page.
e.g.
Page 1
row
row
row
end of page running total
Page 2
row
row
row
end of page running total
Page 3
row
row
row
last page Total

Is that possible? Ta.



"Per Erik Midtrød" wrote:
On Mar 25, 10:52 pm, slopsjon
wrote:
I want to print out a spread sheet with subtotals on each page but the number
of rows and height of rows maybe different each time and I don't want to have
to manually adjust the print area and move the subtotal row around. Is there
anyway to do this automatically in Excel or do I need something with a
reporting tool.


If you go to subtotals on the menu instead of writing your own
subtotal function just check "Page break between groups"


Per Erik- Hide quoted text -


- Show quoted text -





  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Printing subtotals on each page

Yes, that is correct if you wanted a general purpose routine, and you
would also need to take account of any header/footer space etc.

However, you may decide that you want 50 rows per page, say, so that
would make it easier to code.

Hope this helps.

Pete

On Mar 26, 10:20*am, slopsjon
wrote:
Thanks for the reply.

Does that mean I would have to work out how many rows and height of cells
will fit on a page with a row of subtotals. In other words would I *have to
write my own reporting tool.



"Pete_UK" wrote:
It is not possible using the Data | Subtotals routine - you would need
your own VBA routine to do that.


Pete


On Mar 26, 12:56 am, slopsjon
wrote:
Thanks for the reply. I tried the Subtotals from the menu but that just seems
to Page Break Groups but doesn't put a subtotal on a page that over runs more
than one page. I only have one list of data with no grouping and need a
subtotal of columns on each page.
e.g.
Page 1
row
row
row
end of page running total
Page 2
row
row
row
end of page running total
Page 3
row
row
row
last page Total


Is that possible? Ta.


"Per Erik Midtrød" wrote:
On Mar 25, 10:52 pm, slopsjon
wrote:
I want to print out a spread sheet with subtotals on each page but the number
of rows and height of rows maybe different each time and I don't want to have
to manually adjust the print area and move the subtotal row around.. Is there
anyway to do this automatically in Excel or do I need something with a
reporting tool.


If you go to subtotals on the menu instead of writing your own
subtotal function just check "Page break between groups"


Per Erik- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -


  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Printing subtotals on each page

Thanks for the reply.

One of the columns has wrapped text so the row height varies from row to
row. So I think this would be better of done in Access so I can use the an
Access Report. Unless someone has already written a general VBA printing
routine for Excel.

Thanks for you help Pers and Pete.

"Pete_UK" wrote:

Yes, that is correct if you wanted a general purpose routine, and you
would also need to take account of any header/footer space etc.

However, you may decide that you want 50 rows per page, say, so that
would make it easier to code.

Hope this helps.

Pete

On Mar 26, 10:20 am, slopsjon
wrote:
Thanks for the reply.

Does that mean I would have to work out how many rows and height of cells
will fit on a page with a row of subtotals. In other words would I have to
write my own reporting tool.



"Pete_UK" wrote:
It is not possible using the Data | Subtotals routine - you would need
your own VBA routine to do that.


Pete


On Mar 26, 12:56 am, slopsjon
wrote:
Thanks for the reply. I tried the Subtotals from the menu but that just seems
to Page Break Groups but doesn't put a subtotal on a page that over runs more
than one page. I only have one list of data with no grouping and need a
subtotal of columns on each page.
e.g.
Page 1
row
row
row
end of page running total
Page 2
row
row
row
end of page running total
Page 3
row
row
row
last page Total


Is that possible? Ta.


"Per Erik Midtrød" wrote:
On Mar 25, 10:52 pm, slopsjon
wrote:
I want to print out a spread sheet with subtotals on each page but the number
of rows and height of rows maybe different each time and I don't want to have
to manually adjust the print area and move the subtotal row around.. Is there
anyway to do this automatically in Excel or do I need something with a
reporting tool.


If you go to subtotals on the menu instead of writing your own
subtotal function just check "Page break between groups"


Per Erik- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -



  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Printing subtotals on each page

You're welcome - good luck with the Access route.

Pete

On Mar 26, 12:33*pm, slopsjon
wrote:
Thanks for the reply.

One of the columns has wrapped text so the row height varies from row to
row. So I think this would be better of done in Access so I can use the an
Access Report. Unless someone has already written a general VBA printing
routine for Excel.

Thanks for you help Pers and Pete.



"Pete_UK" wrote:
Yes, that is correct if you wanted a general purpose routine, and you
would also need to take account of any header/footer space etc.


However, you may decide that you want 50 rows per page, say, so that
would make it easier to code.


Hope this helps.


Pete


On Mar 26, 10:20 am, slopsjon
wrote:
Thanks for the reply.


Does that mean I would have to work out how many rows and height of cells
will fit on a page with a row of subtotals. In other words would I *have to
write my own reporting tool.


"Pete_UK" wrote:
It is not possible using the Data | Subtotals routine - you would need
your own VBA routine to do that.


Pete


On Mar 26, 12:56 am, slopsjon
wrote:
Thanks for the reply. I tried the Subtotals from the menu but that just seems
to Page Break Groups but doesn't put a subtotal on a page that over runs more
than one page. I only have one list of data with no grouping and need a
subtotal of columns on each page.
e.g.
Page 1
row
row
row
end of page running total
Page 2
row
row
row
end of page running total
Page 3
row
row
row
last page Total


Is that possible? Ta.


"Per Erik Midtrød" wrote:
On Mar 25, 10:52 pm, slopsjon
wrote:
I want to print out a spread sheet with subtotals on each page but the number
of rows and height of rows maybe different each time and I don't want to have
to manually adjust the print area and move the subtotal row around.. Is there
anyway to do this automatically in Excel or do I need something with a
reporting tool.


If you go to subtotals on the menu instead of writing your own
subtotal function just check "Page break between groups"


Per Erik- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -- Hide quoted text -


- Show quoted text -


  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,290
Default Printing subtotals on each page


"Unless someone has already written a general VBA printing routine for Excel"

Since you asked... you might want to try out the commercial Excel add-in
"Special Print" (with a free 3 week trial) from yours truly.

It has a "Rows to Repeat at Bottom" feature that creates a copy of your
worksheet with specified row(s) added to the bottom of each printed page.
You would have to enter the subtotal formulas after the new page
was created as only values are transferred to the new sheet.
Download from the Products page at...
http://www.realezsites.com/bus/primitivesoftware
--
Jim Cone
San Francisco, USA
(Excel Add-ins / Excel Programming)





"slopsjon"
wrote in message
Thanks for the reply.
One of the columns has wrapped text so the row height varies from row to
row. So I think this would be better of done in Access so I can use the an
Access Report. Unless someone has already written a general VBA printing
routine for Excel.
Thanks for you help Pers and Pete.

  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Printing subtotals on each page

Thanks for the reply.

I think the user justs wants to enter the rows of data and hit print rather
than have to format the print area and select the subtotals to print on each
page.

I found a solution in Access, a bit of code needed as access reports doesn't
do it. You have to use the page footer. Here is an article about it.

Summing in reports
http://office.microsoft.com/en-us/ac...CL100570041033


"Jim Cone" wrote:


"Unless someone has already written a general VBA printing routine for Excel"

Since you asked... you might want to try out the commercial Excel add-in
"Special Print" (with a free 3 week trial) from yours truly.

It has a "Rows to Repeat at Bottom" feature that creates a copy of your
worksheet with specified row(s) added to the bottom of each printed page.
You would have to enter the subtotal formulas after the new page
was created as only values are transferred to the new sheet.
Download from the Products page at...
http://www.realezsites.com/bus/primitivesoftware
--
Jim Cone
San Francisco, USA
(Excel Add-ins / Excel Programming)





"slopsjon"
wrote in message
Thanks for the reply.
One of the columns has wrapped text so the row height varies from row to
row. So I think this would be better of done in Access so I can use the an
Access Report. Unless someone has already written a general VBA printing
routine for Excel.
Thanks for you help Pers and Pete.


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
Page subtotals W.Easton Excel Discussion (Misc queries) 1 January 3rd 08 02:50 AM
Excel Printing --Borders are not printing on the same page as data Stup88 Excel Discussion (Misc queries) 1 August 7th 07 09:34 AM
subtotals to a different page. Neophyte New Users to Excel 3 January 18th 06 12:00 AM
Printing what I can see on the screen - subtotals [email protected] Excel Discussion (Misc queries) 0 January 8th 06 10:13 AM
Printing what I can see on the screen - subtotals [email protected] Excel Discussion (Misc queries) 0 January 8th 06 09:28 AM


All times are GMT +1. The time now is 08:22 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"