This article includes a sample macro that illustrates how to set a print area by using a defined name.
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.
Set a Print Area by Using a Defined Name
To follow the example that is 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, the macro code reads as follows:
Sub Macro1()
Range("A1:D5").Select
ActiveSheet.PageSetup.PrintArea = "$A$1:$D$5"
ActiveWindow.SelectedSheets.PrintOut Copies:=1
End Sub
The problem with this macro is that if you insert one or more rows in this range of cells and then rerun the macro, it prints only the cell range A1:D5. The macro does not print any rows that were moved down because of the rows that you inserted.
To have your macro automatically adjust when you insert or delete rows in 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, follow these steps:
- In your worksheet, select the range A1:D5.
- On the Insert menu, point to Name, and then click Define.
- In the Names in workbook box, type myrange. Make sure that the Refers to box contains =Sheet1!$A$1:$D$5.
- Click OK.
- Modify the recorded macro that is shown at the beginning of this section so that it reads as follows:
Sub Macro1() Range("myrange").Select ActiveSheet.PageSetup.PrintArea = "myrange" ActiveWindow.SelectedSheets.PrintOut Copies:=1 End Sub
NOTE: Instead of using a fixed range of cells, use the defined name "myrange".