Microsoft Knowledge Base |
|
XL5: Recorded Macro Unexpectly Hides All Columns in Range |
|
|
Last reviewed: September 13, 1996
Article ID: Q122061 |
|
The information in this article applies to:
SYMPTOMSIn Microsoft Excel, when you record a Visual Basic, Applications Edition, macro that selects nonadjacent cells and hides them, you may not receive the results you expect when you run the recorded macro. When you run the macro, the entire range of columns between the nonadjacent selections will be hidden.
CAUSEThis problem occurs because the macro records the following statement:
Selection.EntireColumn.HiddenThis statement hides every column between the upper-left cell and the lower- right cell of the selected cells (rather than hiding only the columns that contain the selected cells).
WORKAROUNDMicrosoft provides examples of Visual Basic 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. This Visual Basic procedure is provided 'as is' and Microsoft does not guarantee that it can be used in all situations. Microsoft does not support modifications of this procedure to suit customer requirements for a particular purpose. To work around this problem, edit the macro such that it uses a For Each...Next statement to apply the Hidden property to only the columns that contain the selected cells, as in the following example:
Sub HideIt()
For Each x in Selection.Areas
x.EntireColumn.Hidden=True
Next x
End Sub
|
|
KBCategory: kbprg kbcode
©1997 Microsoft Corporation. All rights reserved. Legal Notices. |