ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Text from within a sheet into right header (https://www.excelbanter.com/excel-programming/371228-text-within-sheet-into-right-header.html)

Darin Kramer

Text from within a sheet into right header
 

Howdie,

How do I put text from say cell c10 into the right header by using
VB...?

Thanks

D


*** Sent via Developersdex http://www.developersdex.com ***

Tom Ogilvy

Text from within a sheet into right header
 
Activesheet.PageSetup.RightHeader = Activesheet.Range("C10").Text

--
Regards,
Tom Ogilvy


"Darin Kramer" wrote:


Howdie,

How do I put text from say cell c10 into the right header by using
VB...?

Thanks

D


*** Sent via Developersdex http://www.developersdex.com ***


Gary''s Student

Text from within a sheet into right header
 
Private Sub Workbook_BeforePrint(Cancel As Boolean)
ActiveSheet.PageSetup.RightHeader = Cells(10, 3).Value
End Sub

Paste this into ThisWorkbook code, not a standard module
--
Gary's Student


"Darin Kramer" wrote:


Howdie,

How do I put text from say cell c10 into the right header by using
VB...?

Thanks

D


*** Sent via Developersdex http://www.developersdex.com ***


Jean-Yves[_2_]

Text from within a sheet into right header
 
Hi

according Excel VBA help by simply searching Header
RightHeader Property
See Also Applies To Example Specifics
Returns or sets the right part of the header. Read/write String.

Remarks
Special format codes can be used in the header text.

Example
This example prints the filename in the upper-right corner of every page.

Worksheets("Sheet1").PageSetup.RightHeader = "&F"So
Worksheets("Sheet1").PageSetup.RightHeader =
Worksheets("Sheet1").Range("C10")Regards"Darin Kramer"
wrote in message
...

Howdie,

How do I put text from say cell c10 into the right header by using
VB...?

Thanks

D


*** Sent via Developersdex http://www.developersdex.com ***





All times are GMT +1. The time now is 06:58 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com