comments in excel

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How can I copy / cut & paste a table including all the formatting into a
comment in an excel spreadsheet
 
EGYPTIAN SUE said:
How can I copy / cut & paste a table including all the formatting into a
comment in an excel spreadsheet

A "comment" is designed for a brief note, to add some information about the
contents of a cell, and is plain text only AFAIK. What EXACTLY are you
trying to acheive?
 
suppose you have entered some in cell D8 e.g. rv

you want this to be entered in comments of cell G10

try this url

Public Sub test()
Dim x As String
x = Range("d8").Value
Range("g10").AddComment x
End Sub
==========
see whether you get what you want.
perhaps itis not possible to copy the format etc.
 

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