+ Reply to Thread
Results 1 to 8 of 8
  1. #1
    Valued Forum Contributor
    Join Date
    09-04-2007
    Location
    Ontario, Ca
    Posts
    601

    Comments Display Error

    On my workbook I am using Comments to show others how to do it.

    Problem: When I insert a comment into a cell that is close to the right side of the computer screen, part of the comment is hidden to the right.

    I've looked at all the setting on formatting "Comments" and I can not find a way to change where the comments box will be displayed.

    Does anyone know if there is anyway to keep the "Comments Box" within the computer screen so all of the "Comments" can be read.
    Thanks for helping . . .
    Matt @ Launchnet

  2. #2
    Forum Guru Simon Lloyd's Avatar
    Join Date
    03-02-2004
    Location
    Cheshire, UK
    MS-Off Ver
    MS 97, 2003, 2007, 2010
    Posts
    2,897
    Look here at Chip Pearsons site for some useful code on zoom http://www.cpearson.com/excel/zoom.htm

  3. #3
    Valued Forum Contributor
    Join Date
    09-04-2007
    Location
    Ontario, Ca
    Posts
    601

    Sorry - Not what I need

    Thanks for the suggestion. It doesn't do what I need. I have more than 1 comment in diffeent cells and this wouldn't work.

    Thanks for your suggestion.
    Still Looking
    Thanks for helping . . .
    Matt @ Launchnet

  4. #4
    Forum Guru Simon Lloyd's Avatar
    Join Date
    03-02-2004
    Location
    Cheshire, UK
    MS-Off Ver
    MS 97, 2003, 2007, 2010
    Posts
    2,897
    How about this then?
    Code:
    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
        Dim MyCom As Comment
        On Error Resume Next
        Set MyCom = Target(1, 1).Comment
        If Target.Column >= 11 Then 'change to suit last but one visible column
        If Not MyCom Is Nothing Then Application.Goto Target(1, 1), True
        End If
    End Sub

  5. #5
    Forum Moderator davesexcel's Avatar
    Join Date
    02-19-2006
    Location
    Cochrane,Alberta
    MS-Off Ver
    XL 2003,2007
    Posts
    6,259
    Quote Originally Posted by Launchnet
    Thanks for the suggestion. It doesn't do what I need. I have more than 1 comment in diffeent cells and this wouldn't work.

    Thanks for your suggestion.
    Still Looking
    It probably is not possible without VBA, but another way the create comments is with data Validation
    Select a cell,then Go to
    Data
    Validation
    Select input message tab
    Add Title
    Input message
    Make sure the check box is checked to show message when cell is selected
    then click OK
    I have seen the message always show when that cell is selected using data validation
    Dave


  6. #6
    Valued Forum Contributor
    Join Date
    09-04-2007
    Location
    Ontario, Ca
    Posts
    601

    Dave 1st. Simon 2nd

    Dave, I tried your suggestion on validation, but it is too short and will not do what I need comments to do.


    Simon, Can you please give me an explaination as to what this code does. I've never seen anything like this. Looks interesting, but I simply don't know how even to use it.

    How do I call the code since it is Private or do I simply attach it to a macro?

    I can not use a macro in each cell that I have a comment
    Thanks for helping . . .
    Matt @ Launchnet

  7. #7
    Forum Guru Simon Lloyd's Avatar
    Join Date
    03-02-2004
    Location
    Cheshire, UK
    MS-Off Ver
    MS 97, 2003, 2007, 2010
    Posts
    2,897
    press Alt+F11 double click the worksheet name on the left and paste it in, the code will only bring your comment cell to the left if the column number is greater than 11 but you can alter that, other than that there is no way to automatically view comments on the right!

  8. #8
    Valued Forum Contributor
    Join Date
    09-04-2007
    Location
    Ontario, Ca
    Posts
    601

    Where is the worksheet Name

    Trying to follow your instructions. Please describe where I find the worksheet name on the left. The only worksheet name that I see is at the very top of the sheet on the left side, which reads: Microsoft Excel - LinkMenu. I've tried double clicking but nothing happens.

    I've tried hoovering over the cell so that the comments are displayed.
    I've tried selecting the cell where the comments are.

    Nothing happens when I do your suggestion.
    Thanks for helping . . .
    Matt @ Launchnet

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.2.0