Please Note: This article is written for users of the following Microsoft Excel versions: 2007 and 2010. If you are using an earlier version (Excel 2003 or earlier), this tip may not work for you. For a version of this tip written specifically for earlier versions of Excel, click here: Linking Comments to Multiple Cells.

Linking Comments to Multiple Cells

Written by Allen Wyatt (last updated October 9, 2020)
This tip applies to Excel 2007 and 2010


2

When you insert a comment into a worksheet, that comment is associated with a single cell. There may be times when you want to have a single comment associated with two or more cells. Unfortunately, Excel doesn't provide this capability—there is a strict one-to-one correspondence between comments and cells.

You can, however, use a workaround—create your own comments. You can do this using a text box to contain your comment, and then draw lines between the text box and whatever cells the comment applies to. If you normally want your comments hidden, then you will need to use a macro that takes care of making the text box and lines visible or invisible.

For instance, assume that you create a comment in a text box named Text Box 1. Further, assume that you have two lines leading from the text box to the cells to which the comment applies. The first line, named Line 1, leads to cell C15. The second line, named Line 2, leads to cell F7. You could add the following macro to the worksheet's object:

Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
    Shapes("Text Box 1").Visible = False
    Shapes("Line 1").Visible = False
    Shapes("Line 2").Visible = False

    If Target.Address = "$C$15" Then
        Shapes("Text Box 1").Visible = True
        Shapes("Line 1").Visible = True
    End If
    If Target.Address = "$F$7" Then
        Shapes("Text Box 1").Visible = True
        Shapes("Line 2").Visible = True
    End If
End Sub

Anytime a selection is made on the worksheet, the three objects are hidden. If cell C15 is selected, the textbox and the line appropriate line are made visible. Similarly, if cell F7 is selected, the textbox and its line are made visible.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (11285) applies to Microsoft Excel 2007 and 2010. You can find a version of this tip for the older menu interface of Excel here: Linking Comments to Multiple Cells.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Ignoring Paragraph Marks when Pasting

Paste information in a worksheet, and you may end up with Excel placing it into lots of different cells. If you want it ...

Discover More

Out of Kilter Borders

Borders not printing properly? It could be any one of a number of reasons causing the problem. This tip provides some ...

Discover More

Searching for Text that Doesn't End a Paragraph

The Find and Replace capabilities of Word are very powerful, particularly if you are using wildcards in your search. ...

Discover More

Professional Development Guidance! Four world-class developers offer start-to-finish guidance for building powerful, robust, and secure applications with Excel. The authors show how to consistently make the right design decisions and make the most of Excel's powerful features. Check out Professional Excel Development today!

More ExcelTips (ribbon)

Pasting Pictures into a Comment

Excel allows you to use a picture as a background on a cell comment. This tip looks at how you can paste pictures into a ...

Discover More

Editing a Comment Close to Its Cell

Have you ever chosen to edit a comment, only to find that the comment is quite a ways from the cell with which it is ...

Discover More

Copying Comments to Cells

Need to copy whatever is in a comment (a "note") into a cell on your worksheet? If you have lots of comments, manually ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 8 - 5?

2012-08-28 11:47:56

fracjackmac

I use the Paste Special command to copy comments to multiple cells using the following:

1) Select the cell with the comment that you want to duplicate.
2) Use CTRL-C to copy the cell
3) Select the cells where you want to copy the comment to (hold the CTRL key as you select cells if selecting multiple non-contiguous cells)
4) Use ALT-E S C ENTER to "Paste Special - Comments"
[ Using the ribbon - Home > Paste > Paste Special > Comments or ALT H V S C ENTER ]


2012-02-13 05:20:37

Andrew Evans

A very useful tip - better than copy / paste the same comment.


This Site

Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.