Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 99
Default Repeat the titles across multiple sheets of a workbook.

I want to repeat the same text in the titles across multiple sheets of
a workbook.
I grouped the sheets but the pagesetup shows the options under the
Sheet Tab Disabled.
I want to print titles by repeating the same text on the top of all
the workbook.
Is there any method i can do this.
Copying the required titles to multiple sheets won't be a good option
because each workbook contains many sheet and there are several
workbooks.
Thanks in advance.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22,906
Default Repeat the titles across multiple sheets of a workbook.

Do you mean when printing you want to set "rows to repeat at top" ?

You cannot do this with grouped sheets.

You would require VBA macro to perform that operation.


Gord Dibben MS Excel MVP



On Tue, 22 Sep 2009 09:22:29 -0700 (PDT), Subodh
wrote:

I want to repeat the same text in the titles across multiple sheets of
a workbook.
I grouped the sheets but the pagesetup shows the options under the
Sheet Tab Disabled.
I want to print titles by repeating the same text on the top of all
the workbook.
Is there any method i can do this.
Copying the required titles to multiple sheets won't be a good option
because each workbook contains many sheet and there are several
workbooks.
Thanks in advance.


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 99
Default Repeat the titles across multiple sheets of a workbook.

On Sep 23, 12:02*am, Gord Dibben <gorddibbATshawDOTca wrote:
Do you mean when printing you want to set "rows to repeat at top" ?

You cannot do this with grouped sheets.

You would require VBA macro to perform that operation.

Gord Dibben *MS Excel MVP

On Tue, 22 Sep 2009 09:22:29 -0700 (PDT), Subodh
wrote:



I want to repeat the same text in thetitlesacross multiple sheets of
a workbook.
I grouped the sheets but the pagesetup shows the options under the
Sheet Tab Disabled.
I want toprinttitlesby repeating the same text on the top of all
the workbook.
Is there any method i can do this.
Copying the requiredtitlesto multiple sheets won't be a good option
because each workbook contains many sheet and there are several
workbooks.
Thanks in advance.- Hide quoted text -


- Show quoted text -


Has any one got VBA code for this
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 897
Default Repeat the titles across multiple sheets of a workbook.

See http://www.codeforexcelandoutlook.co...repeat-at-top/

ActiveSheet.PageSetup.PrintTitleRows = "$1:$1"

would repeat row one at the top of each printed page.

--JP

On Oct 5, 9:12*am, Subodh wrote:
On Sep 23, 12:02*am, Gord Dibben <gorddibbATshawDOTca wrote:


Do you mean when printing you want to set "rows to repeat at top" ?


You cannot do this with grouped sheets.


You would require VBA macro to perform that operation.


Gord Dibben *MS Excel MVP



* *Has any one got VBA code for this

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22,906
Default Repeat the titles across multiple sheets of a workbook.

Using VBA code you can set the same print range and rows to repeat at top on
each sheet in grouped sheets.

See this google search result with Dave Peterson and myself posting. The
print area code is from Bob Flanagan.

http://snipurl.com/106kz


Gord


On Mon, 5 Oct 2009 06:12:40 -0700 (PDT), Subodh wrote:

On Sep 23, 12:02*am, Gord Dibben <gorddibbATshawDOTca wrote:
Do you mean when printing you want to set "rows to repeat at top" ?

You cannot do this with grouped sheets.

You would require VBA macro to perform that operation.

Gord Dibben *MS Excel MVP

On Tue, 22 Sep 2009 09:22:29 -0700 (PDT), Subodh
wrote:



I want to repeat the same text in thetitlesacross multiple sheets of
a workbook.
I grouped the sheets but the pagesetup shows the options under the
Sheet Tab Disabled.
I want toprinttitlesby repeating the same text on the top of all
the workbook.
Is there any method i can do this.
Copying the requiredtitlesto multiple sheets won't be a good option
because each workbook contains many sheet and there are several
workbooks.
Thanks in advance.- Hide quoted text -


- Show quoted text -


Has any one got VBA code for this




  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 99
Default Repeat the titles across multiple sheets of a workbook.

On 5 Oct, 14:18, Gord Dibben <gorddibbATshawDOTca wrote:
Using VBA code you can set the same print range and rows torepeatat top on
each sheet in grouped sheets.

See this google search result with Dave Peterson and myself posting. *The
print area code is from Bob Flanagan.

http://snipurl.com/106kz

Gord



On Mon, 5 Oct 2009 06:12:40 -0700 (PDT), Subodh wrote:
On Sep 23, 12:02*am, Gord Dibben <gorddibbATshawDOTca wrote:
Do you mean when printing you want to set "rows torepeatat top" ?


You cannot do this with grouped sheets.


You would require VBA macro to perform that operation.


Gord Dibben *MS Excel MVP


On Tue, 22 Sep 2009 09:22:29 -0700 (PDT), Subodh
wrote:


I want torepeatthe same text in thetitlesacross multiple sheets of
a workbook.
I grouped the sheets but the pagesetup shows the options under the
Sheet Tab Disabled.
I want toprinttitlesby repeating the same text on the top of all
the workbook.
Is there any method i can do this.
Copying the requiredtitlesto multiple sheets won't be a good option
because each workbook contains many sheet and there are several
workbooks.
Thanks in advance.- Hide quoted text -


- Show quoted text -


* Has any one got VBA code for this- Hide quoted text -


- Show quoted text -


This worked but not as i required. This sets the same print range and
rows to repeat at top on
each sheet in grouped sheets. ie. Rows 1:3 in each of each
Sheet1,Sheet2.............. are repeated in their respective pages.
But what i need is to repeat the Rows 1:3 of Sheet 1 to be repeated in
the top of the Sheet1 as well as Sheet2,Sheet3 and other sheets in the
workbook.
  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 99
Default Repeat the titles across multiple sheets of a workbook.

On Oct 8, 10:16*am, Subodh wrote:
On 5 Oct, 14:18, Gord Dibben <gorddibbATshawDOTca wrote:





Using VBA code you can set the same print range and rows torepeatat top on
each sheet in grouped sheets.


See this google search result with Dave Peterson and myself posting. *The
print area code is from Bob Flanagan.


http://snipurl.com/106kz


Gord


On Mon, 5 Oct 2009 06:12:40 -0700 (PDT), Subodh wrote:
On Sep 23, 12:02*am, Gord Dibben <gorddibbATshawDOTca wrote:
Do you mean when printing you want to set "rows torepeatat top" ?


You cannot do this with grouped sheets.


You would require VBA macro to perform that operation.


Gord Dibben *MS Excel MVP


On Tue, 22 Sep 2009 09:22:29 -0700 (PDT), Subodh
wrote:


I want torepeatthe same text in thetitlesacross multiple sheets of
a workbook.
I grouped the sheets but the pagesetup shows the options under the
Sheet Tab Disabled.
I want toprinttitlesby repeating the same text on the top of all
the workbook.
Is there any method i can do this.
Copying the requiredtitlesto multiple sheets won't be a good option
because each workbook contains many sheet and there are several
workbooks.
Thanks in advance.- Hide quoted text -


- Show quoted text -


* Has any one got VBA code for this- Hide quoted text -


- Show quoted text -


This worked but not as i required. This sets the same print range and
rows to repeat at top on
each sheet in grouped sheets. ie. Rows 1:3 in each of each
Sheet1,Sheet2.............. are repeated in their respective pages.
But what i need is to repeat the Rows 1:3 of Sheet 1 to be repeated in
the top of the Sheet1 as well as Sheet2,Sheet3 and other sheets in the
workbook.- Hide quoted text -

- Show quoted text -


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
All sheets in workbook have same rows to repeat at top Subodh Excel Worksheet Functions 1 June 26th 11 04:53 PM
Change multiple Chart Titles in different sheets in the same Workbook asprivl Excel Worksheet Functions 2 November 24th 10 10:44 AM
How to repeat a code for selected sheets (or a contiguous range of sheets) in a Workbook? Dmitry Excel Worksheet Functions 6 March 29th 06 12:43 PM
How to repeat a code for selected sheets (or a contiguous range of sheets) in a Workbook? Dmitry Excel Programming 6 March 29th 06 12:43 PM
VBA Code To have a macro repeat on all sheets in a workbook carl Excel Worksheet Functions 3 November 3rd 05 07:48 PM


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