Software Requirements Reviews with MS Word - How do I get metrics in an automated way? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T12:45:47Z http://stackoverflow.com/feeds/question/378425 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/378425/software-requirements-reviews-with-ms-word-how-do-i-get-metrics-in-an-automated 2 Software Requirements Reviews with MS Word - How do I get metrics in an automated way? Joe Schneider 2008-12-18T16:36:26Z 2008-12-18T16:47:57Z <p>Let's say I have a requirements document in MS Word, and someone else reviews it an provides a list of issues found using the "Track Changes" feature.</p> <p>Is there a way to extract "how many major/minor issues were found during the review?" using an automated script - for metrics purposes?</p> <p>I see <a href="http://smartbear.com/codecollab.php" rel="nofollow">CodeCollaborator</a> has some MS Word integration, but it doesn't seem to know how to look inside Word to extract the tracked changes data. It just launches the document.</p> http://stackoverflow.com/questions/378425/software-requirements-reviews-with-ms-word-how-do-i-get-metrics-in-an-automated/378464#378464 2 Answer by James Piggot for Software Requirements Reviews with MS Word - How do I get metrics in an automated way? James Piggot 2008-12-18T16:47:57Z 2008-12-18T16:47:57Z <p>I did once write a Word macro that extracts the comments to a separate document, you are welcome to try adapting this to your purposes, if you have trouble then reply here and I can give you a hand with making changes.</p> <pre><code>Public Sub PROCESS_COMMENTS() Dim strReplaceText As String Dim myPar As Paragraph Dim strCurrentColumn As String Dim i As Integer Dim Com As Comment Application.ScreenUpdating = False ' set the input and output docs. Set inDoc = ActiveDocument ' check we have comments to process in the original document If inDoc.Comments.Count &lt; 1 Then MsgBox "No comments in the document" Exit Sub End If ' comments exist so create new document Set outDoc = Documents.Add Set outRange = outDoc.Content outDoc.Range.InsertAfter "List of Comments:" outDoc.Paragraphs(outDoc.Paragraphs.Count).Style = outDoc.Styles("Heading 1") outDoc.Range.InsertParagraphAfter ' cycle through comments, inserting them in the new document ' display the new document and refresh outDoc.Activate Application.ScreenRefresh For Each Com In inDoc.Comments outRange.InsertAfter "[" &amp; Com.Author &amp; " - " &amp; Com.Initial &amp; Com.Index &amp; "] " outDoc.Paragraphs(outDoc.Paragraphs.Count).Range.Font.Bold = True outDoc.Range.InsertParagraphAfter outRange.InsertAfter Com.Range.Text outDoc.Paragraphs(outDoc.Paragraphs.Count).Range.Font.Bold = False Set myRange = Com.Scope outDoc.Range.InsertParagraphAfter outDoc.Range.InsertParagraphAfter Next Application.ScreenUpdating = True Set outDoc = ActiveDocument End Sub </code></pre>