Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I would like to be able to use a named range for the CenterHeader. When I
refer to one cell I can get it to work, but I'd like to refer to a named range so that the users won't have to use "Alt+Enter" to force the text to wrap. Instead I would like to have 4 cells referred to by name. Below is the code that works. When I name a range "Center_Title" and select cells C36 thru C39 and run the macro nothing appears in the center header. If I can get this to work I want to do something similar for the Left, Center, & Right Footer where some of the cells in the named range contain dates. Sub PrintRange() Dim PrintRange As Range Set PrintRange = PrintArea("Curve") With Worksheets("Curve").PageSetup .CenterHorizontally = True .PrintArea = PrintRange.Address(External:=True) .Orientation = xlLandscape .CenterHeader = "&""Arial,Regular""&22" & Range("Instructions!C36").Value PrintRange.BorderAround Weight:=xlThin End With End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Named Range in Customer Header | Excel Discussion (Misc queries) | |||
How do I left justify center section header | Excel Discussion (Misc queries) | |||
inserting a named range into new cells based on a named cell | Excel Discussion (Misc queries) | |||
Using a named range in a header with VBA? | Excel Discussion (Misc queries) | |||
align text in the center of a range of cells | Excel Programming |