Can Comment in word have pre-filled information?

  • Thread starter Thread starter orionstargate
  • Start date Start date
O

orionstargate

We are wondering if the Comment balloon could have pre-filled information
title which the reviewer would have to provide.

Example when a comment is opened, the following would be shown, in addition
to the user's name or user's code:

Recommendation:
Rationale:



Thank you
 
This can be accomplished with a small macro. The following macro will insert
such comment:

Sub InsertCommentWithText()
Selection.Comments.Add Range:=Selection.Range, _
Text:=vbCr & "Recommendation:" & vbCr & "Rationale:"
End Sub

If you want the macro to be carried out instead of the built-in command for
inserting a comment, you must change the macro name from
“InsertCommentWithText†to “InsertAnnotationâ€.

If you need help on installing a macro, see:
http://word.mvps.org/faqs/macrosvba/CreateAMacro.htm


--
Regards
Lene Fredborg - Microsoft MVP (Word)
DocTools - Denmark
www.thedoctools.com
Document automation - add-ins, macros and templates for Microsoft Word
 
You are welcome. I am glad I could help.

--
Regards
Lene Fredborg - Microsoft MVP (Word)
DocTools - Denmark
www.thedoctools.com
Document automation - add-ins, macros and templates for Microsoft Word
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top