Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
bruce
 
Posts: n/a
Default How do I copy the print settings, including header and footer fro.

How do you copy pint setting from one tab or spreadsheet to another including
the header and footer settings?

Thanks, Bruce
  #2   Report Post  
Gord Dibben
 
Posts: n/a
Default

Bruce

Right-click on first sheet tab and "select all sheets".

Do your page setup on active sheet and it will be done to all sheets.

If first sheet already has the settings you want, just do the FilePage Setup
and OK.

Settings will be transferred to other sheets.

Note: you cannot set print range and rows to repeat at top.

To do that requires VBA code.

DO NOT FORGET to ungroup the sheets when Page Setup is complete.


Gord Dibben Excel MVP

On Sat, 16 Apr 2005 13:24:01 -0700, "bruce"
wrote:

How do you copy pint setting from one tab or spreadsheet to another including
the header and footer settings?

Thanks, Bruce


  #3   Report Post  
RagDyeR
 
Posts: n/a
Default

Set up one of your sheets with all the settings that you wish.

Then, hold <Ctrl, and click on the tabs of the other sheets that you wish
to have the same settings.

What you've done is "Group" the sheets, and you will see this (Group) in the
title bar.
The tabs will be white, with the "master" sheet in bold.

Now, just
<File <PageSetUp <OK
And you're done.

Make sure that the already formatted (master) sheet is in bold (in focus),
since this procedure will overwrite the settings of the other sheets, and if
you accidentally chose a non-formatted sheet as the focus sheet, it would
overwrite (erase) the settings that you set-up on your main (master) sheet.

And finally, make sure you "Ungroup" when you're finished by either right
clicking in a tab and click on "ungroup", or click in one of the tabs of an
unselected sheet.

--

HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


"bruce" wrote in message
...
How do you copy pint setting from one tab or spreadsheet to another
including
the header and footer settings?

Thanks, Bruce


  #4   Report Post  
Posted to microsoft.public.excel.misc
Guus
 
Posts: n/a
Default How do I copy the print settings, including header and footer

Gord,
You made a passing reference to a situation I am experiencing. I believe
that in past I could group tabs and then specify that a 'standard' title row
or rows be repeated on every page bring printed.
Now for some reason, while I can see the dialogue box in the 'sheet' tab of
the 'setup' dialogue, Excel won't let me use it.
It appears that my only option is to do my many tabs 'one at a time', but
even on a one-by-one basis the dialogue box no longer appears to work. It is
as if by setting some common print features for a group of tabs I have locked
myself out of the header row functionality of Excel.
Your message implies that Visual Basic coding is one way out of this jam.
Am I correct in inferring this to be so? Also, if yes, where would you
suggest I go to look for a simple 'how to' for the situation at hand?
Thank you.
Regards,
Guus S.

"Gord Dibben" wrote:

Bruce

Right-click on first sheet tab and "select all sheets".

Do your page setup on active sheet and it will be done to all sheets.

If first sheet already has the settings you want, just do the FilePage Setup
and OK.

Settings will be transferred to other sheets.

Note: you cannot set print range and rows to repeat at top.

To do that requires VBA code.

DO NOT FORGET to ungroup the sheets when Page Setup is complete.


Gord Dibben Excel MVP

On Sat, 16 Apr 2005 13:24:01 -0700, "bruce"
wrote:

How do you copy pint setting from one tab or spreadsheet to another including
the header and footer settings?

Thanks, Bruce



  #5   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben
 
Posts: n/a
Default How do I copy the print settings, including header and footer

On Fri, 26 May 2006 08:31:03 -0700, Guus wrote:

Gord,
You made a passing reference to a situation I am experiencing. I believe
that in past I could group tabs and then specify that a 'standard' title row
or rows be repeated on every page bring printed.

Not in any version of Excel I have used from 5.0 through 2003........


Now for some reason, while I can see the dialogue box in the 'sheet' tab of
the 'setup' dialogue, Excel won't let me use it.
It appears that my only option is to do my many tabs 'one at a time', but
even on a one-by-one basis the dialogue box no longer appears to work. It is
as if by setting some common print features for a group of tabs I have locked
myself out of the header row functionality of Excel.
Your message implies that Visual Basic coding is one way out of this jam.
Am I correct in inferring this to be so? Also, if yes, where would you
suggest I go to look for a simple 'how to' for the situation at hand?


Macro from Dave Peterson..........

Option Explicit
Sub testme()
Dim wks As Worksheet
For Each wks In ActiveWindow.SelectedSheets
wks.PageSetup.PrintTitleRows = "$1:$11"
' adjust range to suit
Next wks
End Sub

First, select the sheets that you want (click on the first tab and ctrl/shift
click on subsequent), then run that macro.

Then remember to ungroup those selected sheets.

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm



Gord

Thank you.
Regards,
Guus S.

"Gord Dibben" wrote:

Bruce

Right-click on first sheet tab and "select all sheets".

Do your page setup on active sheet and it will be done to all sheets.

If first sheet already has the settings you want, just do the FilePage Setup
and OK.

Settings will be transferred to other sheets.

Note: you cannot set print range and rows to repeat at top.

To do that requires VBA code.

DO NOT FORGET to ungroup the sheets when Page Setup is complete.


Gord Dibben Excel MVP

On Sat, 16 Apr 2005 13:24:01 -0700, "bruce"
wrote:

How do you copy pint setting from one tab or spreadsheet to another including
the header and footer settings?

Thanks, Bruce




Gord Dibben MS Excel MVP
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
How to copy toolbar settings from Excel 2003? VJ Excel Discussion (Misc queries) 5 April 8th 05 09:53 AM
Spreadsheet print including macro buttons? gunga Excel Discussion (Misc queries) 4 February 10th 05 06:30 PM
Saving Print Settings? TiffanyPoole Setting up and Configuration of Excel 0 December 27th 04 08:23 PM
print header or footer on first page only nadinep Excel Discussion (Misc queries) 2 December 11th 04 05:25 PM
Macro for changing print settings Bill Excel Discussion (Misc queries) 3 December 3rd 04 10:49 PM


All times are GMT +1. The time now is 11:51 PM.

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

About Us

"It's about Microsoft Excel"