Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

XL: All PageSetup Settings Are Recorded into Macro


View products that this article applies to.

Symptoms

In Microsoft Excel, if you record a Microsoft Visual Basic for Applications macro that includes a Page Setup command, all of the Page Setup settings are recorded.

Because of this, you may find that running a recorded Visual Basic PageSetup function may take an unusually long amount of time, up to two minutes or more (depending on the speed of your computer). Also, the screen may flicker or blink repeatedly while the function is being executed.

↑ Back to the top


Cause

If you record a Page Setup in a Visual Basic macro, all the settings are recorded due to the way in which page setup information is returned to the macro recording system.

The flickering occurs due to the way in which the PageSetup function updates the sheet's different Page Setup settings. The amount of flickering is related to the number of Page Setup settings you change with the PageSetup function: changing more settings results in more flickering.

↑ Back to the top


Workaround

After you record a Visual Basic PageSetup function, you will probably want to eliminate unneeded settings from the PageSetup function.

To prevent the flickering, set the Application.ScreenUpdating property to False before executing your PageSetup function. Then, when the PageSetup function has completed, you can set the Application.ScreenUpdating property back to True to reenable screen redraws.

↑ Back to the top


More information

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to 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 requirements.
The first Visual Basic code sample shows the results of recording a Visual Basic PageSetup function.

The second Visual Basic code sample shows one way in which you can prevent the screen from flickering or blinking while a PageSetup function is being executed.

Example One - Recording a Page Setup

  1. Create a new workbook.
  2. Activate a worksheet in the workbook.
  3. On the Tools menu, point to Macro, and click Record New Macro.
  4. In the Store macro in list, make sure This Workbook is selected.
  5. Click OK to begin recording.
  6. On the File menu, click Page Setup.
  7. In the Page Setup dialog box, click OK.
  8. On the Tools menu, point to Macro, and then click Stop Recording.
  9. Activate the new Visual Basic module. Your recorded subroutine should appear similar to the following (comments have been added for explanation--they are not actually recorded).
       Sub Macro1()
           With ActiveSheet.PageSetup            ' This is the first part.
               .PrintTitleRows = ""
               .PrintTitleColumns = ""
           End With
           ActiveSheet.PageSetup.PrintArea = ""  ' This is the second part.
           With ActiveSheet.PageSetup            ' This is the third part.
               .LeftHeader = ""
               .CenterHeader = ""
               .RightHeader = ""
               .LeftFooter = ""
               .CenterFooter = ""
               .RightFooter = ""
               .LeftMargin = Application.InchesToPoints(0.75)
               .RightMargin = Application.InchesToPoints(0.75)
               .TopMargin = Application.InchesToPoints(1)
               .BottomMargin = Application.InchesToPoints(1)
               .HeaderMargin = Application.InchesToPoints(0.5)
               .FooterMargin = Application.InchesToPoints(0.5)
               .PrintHeadings = False
               .PrintGridlines = False
               .PrintComments = xlPrintNoComments
               .CenterHorizontally = False
               .CenterVertically = False
               .Orientation = xlPortrait
               .Draft = False
               .PaperSize = xlPaperLetter
               .FirstPageNumber = xlAutomatic
               .Order = xlDownThenOver
               .BlackAndWhite = False
               .Zoom = 100
           End With
       End Sub
    						
When the PageSetup function is recorded, the settings are recorded in three parts:

  1. The first part is a With-End With section which sets the PrintTitleRows and the PrintTitleColumns.

    The second part sets the PrintArea.

    The third part is a With-End With section, which sets all of the other settings.
  2. The second part sets the PrintArea.

    The third part is a With-End With section, which sets all of the other settings.
  3. The third part is a With-End With section, which sets all of the other settings.
If you do not actually want to change certain settings, such as .Draft, you can remove those lines from the subroutine. For example, if you only want to change the PrintTitleRows, the PrintArea, and the Orientation, you could use the following:
   Sub Macro1()
       With ActiveSheet.PageSetup
           .PrintTitleRows = "$1:$3"
           .PrintArea = "$A$4:$C$100"
           .Orientation = xlLandscape
       End With
   End Sub
				

Because the other settings do not need to be changed, it is not necessary to include them in the subroutine. However, you must remove them yourself.

Also, note that the entire PageSetup procedure can be incorporated into a single With-End With section. It is not necessary for the PrintArea, PrintTitleRows, or PrintTitleColumns settings to be changed separately from the other settings; it is only recorded that way.

Example Two - Preventing Screen Flicker While PageSetup Executes

The following subroutine demonstrates one way in which you may prevent the screen from flickering while a PageSetup function is being executed.
   Sub PreventScreenFlicker()

       ' This line turns off screen updating.
       Application.ScreenUpdating = False
       ' Apply each of the following properties to the active sheet's Page
       ' Setup.
       With ActiveSheet.PageSetup
           .PrintTitleRows = "$1:$3"          ' Set print title rows.
           .PrintTitleColumns = "$A:$C"       ' Set print title columns.
           .LeftHeader = ""                   ' Set the left header.
           ' More commands could appear before the End With. They are not
           ' shown here in order to keep the example short.
       End With                              ' End of With section.
       ' Re-enable screen updating. This line is optional; you may not need
       ' or want to re-enable screen updating.
       Application.ScreenUpdating = True

   End Sub
				

The subroutine turns off screen updating just before executing the PageSetup function and then turns screen updating back on when the PageSetup function is complete.

If screen updating is not turned off, as each line in the With section (.PrintTitleRows, .PrintTitleColumns, and so forth) is executed, the screen may flicker slightly.

↑ Back to the top


Article Info
Article ID : 213654
Revision : 5
Created on : 1/1/0001
Published on : 1/1/0001
Exists online : False
Views : 296