The information in this article applies to:
SUMMARY
By 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 INFORMATIONMethod 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: Q125640 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 professionals 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/overview/overview.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.
If 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).
REFERENCES
For more information about the PageSetup property in Microsoft Excel 97,
from the Visual Basic Editor, click the Office Assistant, type PageSetup
click Search, and then click to view "PageSetup Property."
Q176476 OFF: Office Assistant Not Answering Visual Basic Questions"Visual Basic User's Guide," version 5.0, pages 145-146 Additional query words: 8.00 XL98 XL97 XL7 XL5
Keywords : kbprg kbualink97 kbdta kbdtacode PgmHowto KbVBA |
Last Reviewed: January 10, 2000 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |