XL: How to Set Print Area to Range with Defined NameLast reviewed: February 3, 1998Article ID: Q141095 |
The information in this article applies to:
SUMMARYIn Microsoft Excel, if you have a macro that prints a range of cells on your worksheet, it may not print all of your data if you have inserted rows within the range specified in your macro. However, if rather than hard- coding a specific range of cells to print, you instead use a print area that refers to a defined name on your worksheet, you can create a print macro that automatically adjusts to any additional rows you insert into the range.
MORE INFORMATIONMicrosoft 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 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 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/default.aspTo follow the example provided in this article, enter any text information into the cell range A1:D5 on Sheet1 of a new workbook. If you record a macro that selects the range of cells, sets the print area, and then prints the worksheet, you create a macro similar to the following:
Sub Macro1() Range("A1:D5").Select ActiveSheet.PageSetup.PrintArea = Selection.Address ActiveWindow.SelectedSheets.PrintOut Copies:=1 End SubThe problem with this macro is that if you insert one or more rows within this range of cells, and then rerun the recorded macro, it still prints only the range specified in the macro. The macro does not print any rows that were moved down because of the row or rows that you inserted. In order to have your macro automatically adjust when you insert or delete rows within the range you want to print, create a defined name for the range, and then use the defined name in your macro. For this example, you would do the following:
REFERENCESFor more information about Defined Names, click Answer Wizard on the Help menu, and type:
tell me how to define a name |
Additional query words: 5.00 5.00a 5.00c 7.00 XL98 XL97 XL7 XL5
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |