+ Reply to Thread
Results 1 to 5 of 5

Copying of cell text from one file to paste as cell comments in a 2nd file

  1. #1
    Wayne
    Guest

    Copying of cell text from one file to paste as cell comments in a 2nd file

    I would like to get the text in a cell in one file and
    paste that text as comments to a second cell in another
    file. Have tried a number of things but no luck!!

    Wayne

  2. #2
    gocush
    Guest

    RE: Copying of cell text from one file to paste as cell comments in a

    Try this:

    Say you want the data from workbook A into workbook B--
    Open B. Turn on the vba recorder
    Open A. Select the cell where your desired text is. In the formula bar
    select the text you want, click Ctrl+C to copy.
    Activate B. Select the cell where you want the comment.
    Insert>comment>Ctrl+V to paste the text.
    Stop the recorder and study the code. Adjust as needed.


    "Wayne" wrote:

    > I would like to get the text in a cell in one file and
    > paste that text as comments to a second cell in another
    > file. Have tried a number of things but no luck!!
    >
    > Wayne
    >


  3. #3
    Rowan
    Guest

    RE: Copying of cell text from one file to paste as cell comments in a

    Try

    Sub CreateComm()

    Dim commText As String

    commText = ActiveCell.Value
    With Range("A10") 'change as required
    .AddComment
    .Comment.Visible = False
    .Comment.Text Text:="" & commText
    End With

    End Sub

    Regards
    Rowan

    "Wayne" wrote:

    > I would like to get the text in a cell in one file and
    > paste that text as comments to a second cell in another
    > file. Have tried a number of things but no luck!!
    >
    > Wayne
    >


  4. #4
    Tom Ogilvy
    Guest

    Re: Copying of cell text from one file to paste as cell comments in a 2nd file

    You received an answer to your question back in the original post.

    Why put such vague information here - there is much more to your story than
    what you have said. the more you tell, the more likely you will get a
    focused answer. Although I admit you have changed it from copy a comment
    to a comment to now copying text in a cell to a comment if that is what you
    want to do.

    --
    Regards,
    Tom Ogilvy

    "Wayne" <[email protected]> wrote in message
    news:[email protected]...
    > I would like to get the text in a cell in one file and
    > paste that text as comments to a second cell in another
    > file. Have tried a number of things but no luck!!
    >
    > Wayne




  5. #5
    Wayne
    Guest

    Re: Copying of cell text from one file to paste as cell comments in a 2nd file

    youmay be right, I haven't posted enough of the exact
    situation. I wrote it all down but the post window closed
    on me and I don't know if it posted so here goes again..

    I Have a Master spreadsheet to track status of budgets
    and projects. There are 7 columns for each of 7 managers.
    Each column has cells with simple red, yellow and
    green "stoplights". These are paste linked from each of
    the managers individual status spreadsheets.

    Each manager also has a Notes cell for each project right
    by the stoplights (columns k and l). Rather than make 7
    columns in the master sheet for these notes, i was tryong
    to figure out how to copy the text from the Notes cells
    in each subsidiary sheet and paste them as comments into
    the appropriate stoplight cell.

    Hope this is clearer!

    Wayne

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1