XL: How to Set Page Setup Attributes for More Than One SheetLast reviewed: February 3, 1998Article ID: Q154663 |
The information in this article applies to:
SUMMARYBy default, page setup attributes, such as margins, sheet orientation, and print titles, are set individually (on a worksheet-by-worksheet basis). However, you can set some of these attributes globally by using any of the following methods:
MORE INFORMATION
Method 1: Use a TemplateFor information about using templates to set page orientation, click the Index tab in Help, and type:
page setup, storing settings in a template Method 2: Change a Group of WorksheetsSelect multiple worksheets and apply the attributes to that group of worksheets. To select multiple worksheets, press and hold the SHIFT key, and click the sheets you want to select. For additional information, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q125640 TITLE : XL: Can't Set Print Area or Print Titles Method 3: Use a MacroMicrosoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:
http://www.microsoft.com/support/supportnet/refguide/default.aspModify the page setup attributes with a macro. The sample macros in this article demonstrate how to change page orientation in the active workbook and in an open workbook that is not the active workbook. NOTE: These macros use the Orientation property of the PageSetup object. To modify other page setup attributes, use other PageSetup properties, such as LeftMargin, RightMargin, and so on. Macros to Change Page Orientation: This macro sets page orientation for all sheets in the active workbook to be the same as the first sheet in the workbook.
Sub SetAttributes() For Each xWorksheet In ActiveWorkbook.Worksheets xWorksheet.PageSetup.Orientation = _ Worksheets("Sheet1").PageSetup.Orientation Next xWorksheet End Sub ' The workbook containing the following macro also includes a ' worksheet called Sheet1, which is the source of the PageSetup ' information that you want to use to format the worksheets in ' another workbook. ' Before you run this macro, make sure that the second workbook ' is active. Sub SetWorkbookAttributes() For Each xWorksheet In ActiveWorkbook.Worksheets xWorksheet.PageSetup.Orientation = _ ThisWorkbook.Worksheets("Sheet1").PageSetup.Orientation Next xWorksheet End SubIf you want to change additional page setup properties for worksheets, you can add additional lines within the For Each...Next statement in each Sub procedure. The lines should be identical to the example lines provided here, except that the property (Orientation) can be changed as appropriate (CenterFooter, PaperSize, and so on). For additional information, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q119157 TITLE : XL: Macro to Change Page Orientation in Group Mode Incorrect REFERENCES"Visual Basic User's Guide," version 5.0, pages 145-146
|
Additional query words: 7.00 8.00 XL98 XL97 XL7 XL5
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |