Share via

cell reference in a footnote

Anonymous
2012-01-30T17:30:33+00:00

Is there a way to enter a cell reference in a footnote so the footnote will display the content of the referenced cell?

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2012-01-30T19:58:02+00:00

Excel does not do "footnotes" so I assume you mean "footer" as in headers and footers when printing.

You can reference the value in a cell if you use VBA

Sub CellInFooter()

    With ActiveSheet

        .PageSetup.CenterFooter = .Range("A1").Value

    End With

End Sub

On second thought you can enter text in a Comment then have the Comment print at bottom of page.

I guess that could be considered as footnote.

Gord

Was this answer helpful?

0 comments No comments

2 additional answers

Sort by: Most helpful
  1. Anonymous
    2012-01-31T16:39:20+00:00

    You're welcome.

    Thanks for the feedback and good on you for doing the VBA research.

    Gord

    Was this answer helpful?

    0 comments No comments
  2. Anonymous
    2012-01-31T16:23:49+00:00

    You were correct...I meant "footer" and your help was exactly what I needed.  I'd never used VBA nor macros in EXCEL, but found good tutorials and with your VBA coding help it was exactly what I needed.....Thanks much for your response.

    Was this answer helpful?

    0 comments No comments