Create additional formats for tracking changes

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Good day everyone. I would like to be able to set the format for tracking
changes differently than what I can select from the Tools/Options menu in
Word2000. Specifically, I would like to track inserted text as
red,bold,italic - so it stands out on both printed and electronic copy. I
would think there is a macro that could do this, but I don't know how to
write them. I found one that I thought would be similar and tried to massage
it a bit, but essentially just wrecked it. Thank you for your help.
 
Peter said:
Good day everyone. I would like to be able to set the format for
tracking changes differently than what I can select from the
Tools/Options menu in Word2000. Specifically, I would like to track
inserted text as red,bold,italic - so it stands out on both printed
and electronic copy. I would think there is a macro that could do
this, but I don't know how to write them. I found one that I thought
would be similar and tried to massage it a bit, but essentially just
wrecked it. Thank you for your help.

Hi Peter,

Here's the macro you need:

Sub ReformatInserts()
Dim oRev As Revision
For Each oRev In ActiveDocument.Revisions
If oRev.Type = wdRevisionInsert Then
With oRev.Range
.Italic = True
.Bold = True
.Font.Color = wdColorRed
End With
End If
Next
End Sub

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 

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