Comment

  • Thread starter Thread starter Phil
  • Start date Start date
P

Phil

Is it possible using function or formula to "read" and use the contents of
a comment ?
 
AFAIK there is no built in function to do this, but theres always vba.
Press Alt+F11 and paste this in a module:
Public Function ShowComment(Rng As Range)
ShowComment = Rng.Comment.Text
End Function

Then you can use it like any ordinary function.
Like this: =ShowComment(A1)


Per Erik
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top