+ Reply to Thread
Results 1 to 5 of 5

Comments: name includion, font format

  1. #1
    John FM Holstein
    Guest

    Comments: name includion, font format

    In Excel is it possible to set whether to use or not use the user name in
    comments? Is it possible to globally change the bold setting to normal
    setting? Every time I write a comment--and I write many!--I have to delete
    the name and then change from bold to normal.

  2. #2
    Forum Expert dominicb's Avatar
    Join Date
    01-25-2005
    Location
    Lancashire, England
    MS-Off Ver
    MS Office 2000, 2003, 2007 & 2016 365
    Posts
    4,867

    Smile

    Good morning John FM Holstein

    There is no setting as such that wold help you out here. But one possible solution would be to use the macro below, either stored in your personal.xls workbook, or in the files you use or stored as an add-in. When called this will open an input box for a comment to be entered which will place a comment without your name in non-bold text in the currently active cell.

    Sub Comm1()
    Dim Comm As String, Comm2 As String
    On Error Resume Next
    Comm2 = ""
    Comm2 = ActiveCell.Comment.Text
    Comm = InputBox("Enter your comment:", "Comment Box", Comm2)
    ActiveCell.AddComment
    ActiveCell.Comment.Text Text:=Comm
    End Sub

    HTH

    DominicB

  3. #3
    Debra Dalgleish
    Guest

    Re: Comments: name includion, font format

    As domincb said, there's no setting you can change. In the comment, if
    you start typing where the cursor is, the text should be non-bold. Then,
    go back later, and delete the name.

    Another macro you can use to insert a comment, that doesn't limit you to
    255 characters:

    '=======================
    Sub CommentAddOrEdit()
    'adds new plain text comment or positions
    'cursor at end of existing comment text
    Dim cmt As Comment
    Set cmt = ActiveCell.Comment
    If cmt Is Nothing Then
    ActiveCell.AddComment text:=""
    End If
    SendKeys "%ie~"
    End Sub
    '==========================

    If you need help getting started with macros, David McRitchie has
    information:

    http://www.mvps.org/dmcritchie/excel/getstarted.htm


    John FM Holstein wrote:
    > In Excel is it possible to set whether to use or not use the user name in
    > comments? Is it possible to globally change the bold setting to normal
    > setting? Every time I write a comment--and I write many!--I have to delete
    > the name and then change from bold to normal.



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


  4. #4
    Karen
    Guest

    Re: Comments: name includion, font format

    How about if I also want to include the "USER NAME", i am not familiar with
    macros, can you write it out the whole details for me? Thanks.
    --
    Karen


    "Debra Dalgleish" wrote:

    > As domincb said, there's no setting you can change. In the comment, if
    > you start typing where the cursor is, the text should be non-bold. Then,
    > go back later, and delete the name.
    >
    > Another macro you can use to insert a comment, that doesn't limit you to
    > 255 characters:
    >
    > '=======================
    > Sub CommentAddOrEdit()
    > 'adds new plain text comment or positions
    > 'cursor at end of existing comment text
    > Dim cmt As Comment
    > Set cmt = ActiveCell.Comment
    > If cmt Is Nothing Then
    > ActiveCell.AddComment text:=""
    > End If
    > SendKeys "%ie~"
    > End Sub
    > '==========================
    >
    > If you need help getting started with macros, David McRitchie has
    > information:
    >
    > http://www.mvps.org/dmcritchie/excel/getstarted.htm
    >
    >
    > John FM Holstein wrote:
    > > In Excel is it possible to set whether to use or not use the user name in
    > > comments? Is it possible to globally change the bold setting to normal
    > > setting? Every time I write a comment--and I write many!--I have to delete
    > > the name and then change from bold to normal.

    >
    >
    > --
    > Debra Dalgleish
    > Excel FAQ, Tips & Book List
    > http://www.contextures.com/tiptech.html
    >
    >


  5. #5
    Debra Dalgleish
    Guest

    Re: Comments: name includion, font format

    If you want to include the User name, you could just insert a regular
    comment.

    But, if you need special formatting, and want to use a macro, David
    McRitchie has some information on macros:

    http://www.mvps.org/dmcritchie/excel/getstarted.htm


    Karen wrote:
    > How about if I also want to include the "USER NAME", i am not familiar with
    > macros, can you write it out the whole details for me? Thanks.



    --
    Debra Dalgleish
    Excel FAQ, Tips & Book List
    http://www.contextures.com/tiptech.html


+ 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