View Single Post
  #2   Report Post  
Jason Morin
 
Posts: n/a
Default

You can set the header/footer to reference the value of a cell that contains
your formula. For example:

Sub Test()
Dim rFormulaCell As Range
Set rFormulaCell = ActiveSheet.[D1] '<-- change cell
With ActiveSheet
.PageSetup.CenterHeader = rFormulaCell
.PrintOut Copies:=1, Collate:=True
End With
End Sub

---
HTH
Jason
Atlanta, GA


"john mcmichael" wrote:

I would like to place a formula in the Header/footer area so that I can pull
info from one changing cell to the header/footer. Is this possible and if so
how? Thanks in advance to all that reply