Results 1 to 3 of 3

Autosize a comment

Threaded View

  1. #1
    Registered User
    Join Date
    05-05-2009
    Location
    San Diego, CA
    MS-Off Ver
    Excel 2003
    Posts
    97

    Autosize a comment

    my macro processes a lot of data and puts a comment in certain cells (several thousand of them). I would like to autosize the comments so that the text can all be read by default.

    I found the following on the web:
        
    With Worksheets("Budget").Range("A1").AddComment
            .Text x
            .Visible = True
            .Shape.AutoShapeType = msoShapeRoundedRectangle
        End With
        
        Worksheets("Budget").Range("A1").Comment.Shape.Select True
    
       With Selection
            .AutoSize = True
        End With
    My problem is that this requires the cell with the comment in it to be active AND VISIBLE. Is there any way that I can apply the autosize without having the cell VISIBLE?

    The reason is that I have 2 worksheets that have comments on them, and I don't want to continually flicker between them activating cells
    Last edited by gtmeloney; 06-03-2009 at 04:22 PM.

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