+ Reply to Thread
Results 1 to 3 of 3

Formula for pulling comments from one sheet to another

Hybrid View

  1. #1
    Valued Forum Contributor
    Join Date
    04-22-2014
    Location
    Auckland, New Zealand
    MS-Off Ver
    Office 365 (work) and Excel 2013 (home)
    Posts
    1,167

    Formula for pulling comments from one sheet to another

    Hi Experts

    Is there a formula or function that can be used to pull not just the value/contents of a cell in another sheet, but also any comments that have been attached to that cell? Obviously I could just copy the comments from that cell, but the cell referenced can vary, so sometimes it will have a comment and other times it won't.

    Thanks in advance for your help.
    Please add reputation by clicking on the * if I have helped.
    Please mark the thread SOLVED if your issue has been resolved.
    Thanks, Glenn.

  2. #2
    Forum Expert
    Join Date
    12-15-2009
    Location
    Chicago, IL
    MS-Off Ver
    Microsoft Office 365
    Posts
    3,177

    Re: Formula for pulling comments from one sheet to another

    To extract comments, you might need a macro to do that. Maybe this might help.

    Sub ExtractComment()
    Dim cmt As Comment
    Dim ws As Worksheet, wsComment As Worksheet
    Dim l As Long
    
    Set ws = ThisWorkbook.Worksheets("Sheet1")
    Set wsComment = ThisWorkbook.Worksheets.Add
    
    l = 1
    With ws
        For Each cmt In .Comments
            wsComment.Cells(l, 1).Value = cmt.Text
            l = l + 1
        Next cmt
    End With
    
    Set ws = Nothing
    Set wsComment = Nothing
    End Sub
    Attached Files Attached Files

  3. #3
    Registered User
    Join Date
    03-09-2016
    Location
    Manville, NJ, USA
    MS-Off Ver
    Home and Business 2013
    Posts
    1

    Re: Formula for pulling comments from one sheet to another

    No other way besides macros?

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Pulling Comments from Existing Cell into Another Cell
    By Iomega0318 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-07-2015, 03:21 PM
  2. [SOLVED] Data Entry - Formula for pulling info from another sheet
    By mlbdc2012 in forum Excel General
    Replies: 13
    Last Post: 02-04-2015, 06:32 AM
  3. Formula pulling info from another sheet in same workbook....
    By Dieselbug21 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 12-06-2013, 01:03 PM
  4. Replies: 3
    Last Post: 07-01-2013, 07:50 PM
  5. Replies: 0
    Last Post: 03-06-2013, 01:09 PM
  6. Auto Hide/Unhide Based on Results of IF Formula Pulling From Another Sheet
    By dolphinfan2k8 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 12-06-2012, 11:51 AM
  7. Replies: 5
    Last Post: 12-08-2006, 03:08 AM

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