Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Cell Reference in Footer 1

Status
Not open for further replies.

ck1999

Technical User
Dec 2, 2004
784
US
Is there a way to set up a footer to reference the value in a cell? For example if cell c3 is an employees name, can excel print this name in the footer of all the sheets to print?

Thanks

Chris
 
You cannot do this without VBA (a macro).

[tt]_____
[blue]-John[/blue][/tt]
[tab][red]The plural of anecdote is not data[/red]

Help us help you. Please read FAQ181-2886 before posting.
 
In case you are curious about how to do it:
Code:
ActiveSheet.PageSetup.Leftfooter = Range("A1").Value
(Or Rightfooter or Centerfooter)

[tt]_____
[blue]-John[/blue][/tt]
[tab][red]The plural of anecdote is not data[/red]

Help us help you. Please read FAQ181-2886 before posting.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top