XL97: Run-Time Error 9 When Using a Macro to Remove Page Break (170635)
The information in this article applies to:
- Microsoft Excel 97 for Windows
This article was previously published under Q170635 SYMPTOMS
In Microsoft Excel 97, if you run a Visual Basic for Applications macro
that attempts to remove a vertical or horizontal page break from a
worksheet, you may receive the following error message:
Run-time error '9':
Subscript out of range
CAUSE
This problem occurs if the following conditions are true:
WORKAROUND
Microsoft provides examples of Visual Basic for Applications procedures 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. The Visual Basic procedures in this article are
provided 'as is' and Microsoft does not guarantee that they can be used in
all situations. While Microsoft support professionals can help explain the
functionality of a particular macro, they will not modify these examples to
provide added functionality, nor will they help you construct macros to
meet your specific needs. If you have limited programming experience, you
may want to consult one of the Microsoft Solution Providers. Solution
Providers offer a wide range of fee-based services, including creating
custom macros. For more information about Microsoft Solution Providers,
call Microsoft Customer Information Service at (800) 426-9400.
If you know which column is immediately to the right of a vertical page
break, or which row is immediately beneath a horizontal page break, you can
remove the page break by setting the PageBreak property of the column or
row to xlNone.
For example, to remove a vertical page break to the left of column H, use a
line of code similar to the following:
ActiveSheet.Columns("H").PageBreak = xlNone
To remove a horizontal page break below row 17, use the following code:
ActiveSheet.Rows(17).PageBreak = xlNone
You can also prevent the problem from occurring by entering data either to
the right of or below manual page breaks in worksheets.
STATUS
Microsoft has confirmed this to be a problem in the Microsoft products
listed at the beginning of this article. This problem no longer occurs in
Microsoft Excel 2000.
Modification Type: | Major | Last Reviewed: | 10/22/2000 |
---|
Keywords: | kberrmsg kbprb KB170635 |
---|
|