Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
[email protected] brian.gattoni@gmail.com is offline
external usenet poster
 
Posts: 1
Default Track Changes Results summarized into an Excel sheet

Is there a way (internally or 3rd party) to export the results of a
track changes document into an Excel Spreadsheet. The endstate would
look like a list of recommended changes, sorted by author, or page
number, etc.

Anything?

vr
Brian G.
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default Track Changes Results summarized into an Excel sheet

Running a macro containing the following code when the document with the
changes is the active document will create a new document containing details
of each revision. You can then sort and use that if you want in Word, or
copy and paste it into Excel if that is where you must have it.

Dim source As Document, target As Document
Dim rtable As Table
Dim rrow As Row
Dim arev As Revision
Set source = ActiveDocument
Set target = Documents.Add
Set rtable = target.Tables.Add(target.Range, 1, 4)
With rtable
.Cell(1, 1).Range.Text = "Revision"
.Cell(1, 2).Range.Text = "Revision Type"
.Cell(1, 3).Range.Text = "Author"
.Cell(1, 4).Range.Text = "Page Number"
End With
For Each arev In source
Set rrow = rtable.Rows.Add
With rrow
.Cells(1).Range.Text = arev.Range.Text
.Cells(2).Range.Text = arev.Type
.Cells(3).Range.Text = arev.Author
.Cells(4).Range.Text =
arev.Range.Information(wdActiveEndPageNumber)
End With
Next arev


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

wrote in message
...
Is there a way (internally or 3rd party) to export the results of a
track changes document into an Excel Spreadsheet. The endstate would
look like a list of recommended changes, sorted by author, or page
number, etc.

Anything?

vr
Brian G.



  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Lene Fredborg Lene Fredborg is offline
external usenet poster
 
Posts: 1,291
Default Track Changes Results summarized into an Excel sheet

....and for another macro version, that also includes line numbers and
revision dates, see:
http://www.thedoctools.com/index.php...hanges_extract

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


"Doug Robbins - Word MVP" wrote:

Running a macro containing the following code when the document with the
changes is the active document will create a new document containing details
of each revision. You can then sort and use that if you want in Word, or
copy and paste it into Excel if that is where you must have it.

Dim source As Document, target As Document
Dim rtable As Table
Dim rrow As Row
Dim arev As Revision
Set source = ActiveDocument
Set target = Documents.Add
Set rtable = target.Tables.Add(target.Range, 1, 4)
With rtable
.Cell(1, 1).Range.Text = "Revision"
.Cell(1, 2).Range.Text = "Revision Type"
.Cell(1, 3).Range.Text = "Author"
.Cell(1, 4).Range.Text = "Page Number"
End With
For Each arev In source
Set rrow = rtable.Rows.Add
With rrow
.Cells(1).Range.Text = arev.Range.Text
.Cells(2).Range.Text = arev.Type
.Cells(3).Range.Text = arev.Author
.Cells(4).Range.Text =
arev.Range.Information(wdActiveEndPageNumber)
End With
Next arev


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

wrote in message
...
Is there a way (internally or 3rd party) to export the results of a
track changes document into an Excel Spreadsheet. The endstate would
look like a list of recommended changes, sorted by author, or page
number, etc.

Anything?

vr
Brian G.




Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Can't display excel sheet within Word (EMBED Excel.Sheet.8) HR Duvall Microsoft Word Help 3 May 14th 23 02:49 AM
creating a summarized form Debi Microsoft Word Help 1 December 12th 07 12:15 PM
Pasting Links from Charts in Excel to Word results in duplicates H CityGirl Microsoft Word Help 3 May 16th 07 03:31 PM
word vs excel student results [email protected] Mailmerge 2 July 6th 05 01:02 PM
Import Excel sheet John Taylor Page Layout 3 March 7th 05 09:04 AM


All times are GMT +1. The time now is 04:04 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"