K
Krumrei
I need to know how to add wdRevisionProperty to this code and have it display
I have a code that takes the insert and delete and extracts it to the track
changes documentment I have created.
However, how do I get it to display not only the INSERT and DELETED items
like below, but also this Do I use an ELSE?
..Cells(3).Range.Text = "Property"
'Apply red color
oRow.Range.Font.Color = wdColorRed
'Type of revision
If oRevision.Type = wdRevisionInsert Then
.Cells(3).Range.Text = "Inserted"
'Apply automatic color (black on white)
oRow.Range.Font.Color = wdColorAutomatic
Else
.Cells(3).Range.Text = "Deleted"
'Apply red color
oRow.Range.Font.Color = wdColorRed
--->> Need to add that code here to add the wdRevisionProperty changes
that are tracked.
End If
I have a code that takes the insert and delete and extracts it to the track
changes documentment I have created.
However, how do I get it to display not only the INSERT and DELETED items
like below, but also this Do I use an ELSE?
..Cells(3).Range.Text = "Property"
'Apply red color
oRow.Range.Font.Color = wdColorRed
'Type of revision
If oRevision.Type = wdRevisionInsert Then
.Cells(3).Range.Text = "Inserted"
'Apply automatic color (black on white)
oRow.Range.Font.Color = wdColorAutomatic
Else
.Cells(3).Range.Text = "Deleted"
'Apply red color
oRow.Range.Font.Color = wdColorRed
--->> Need to add that code here to add the wdRevisionProperty changes
that are tracked.
End If