XL: How to Set Page Setup Attributes for More Than One Sheet

ID: Q154663

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:

The "More Information" section of this article discusses these options in more detail.

MORE INFORMATION

Method 1: Use a Template

For 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 Worksheets

Select 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 Macro

Microsoft 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/refguide/

Modify 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 Sub

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).

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

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."

NOTE: If the Assistant is hidden, click the Office Assistant button on the Standard toolbar. If the Assistant is not able to answer your query, please see the following article in the Microsoft Knowledge Base:

   ARTICLE-ID: Q176476
   TITLE     : OFF: Office Assistant Not Answering Visual Basic Questions

"Visual Basic User's Guide," version 5.0, pages 145-146

Additional query words: 7.00 8.00 XL98 XL97 XL7 XL5

Keywords          : kbprg kbualink97 kbdta kbdtacode PgmHowto KbVBA 
Version           : WINDOWS:5.0,7.0,97; MACINTOSH:5.0,98
Platform          : MACINTOSH WINDOWS
Issue type        : kbhowto

Last Reviewed: May 18, 1999