Please search this or almost any other Excel group at
http://www.google.com/grphp for an answer which has been provided hundreds
if not thousands of times before. Some new functionality was introduced in
XP, but there is no way to link headers with the main sheet in Excel2k or
previous.
Paul C,

Signature
> Has anyone worked out a way to use data in a cell as part
> of a header string?
Paul, as stated if you do a search will should fine many ways, but here is
one to do it for you before you print the sheet
Private Sub Workbook_BeforePrint(Cancel As Boolean)
'put in worksheet code, will put what's in A1 in the right header
ActiveSheet.PageSetup.RightHeader = Range("A1")
End Sub

Signature
Paul B
Always backup your data before trying something new
Using Excel 97 & 2000
Please post any response to the newsgroups so others can benefit from it
** remove news from my email address to reply by email **
> Has anyone worked out a way to use data in a cell as part
> of a header string?