Reply
 
Thread Tools Display Modes
  #1   Report Post  
Janet at Boeing
 
Posts: n/a
Default Track changes should show added text while HIDING deleted text.

I manage a publications dept and I have been hearing many complaints about
the new 2002 MSWord. We work on many documents and the biggest complaint so
far has to do with the track changes function. In the old version it was
possible to SHOW ADDED TEXT WHILE HIDING DELETED TEXT. Does anybody know if
this function is still available? If it isn't this is a huge mistake on
Microsoft's part and certainly not an upgrade but a big downgrade.

----------------
This post is a suggestion for Microsoft, and Microsoft responds to the
suggestions with the most votes. To vote for this suggestion, click the "I
Agree" button in the message pane. If you do not see the button, follow this
link to open the suggestion in the Microsoft Web-based Newsreader and then
click "I Agree" in the message pane.

http://www.microsoft.com/office/comm...ocmanagemen t
  #5   Report Post  
Suzanne S. Barnhill
 
Posts: n/a
Default

See http://www.gmayor.com/installing_macro.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"Janet at Boeing" Janet at wrote in
message ...
Jay, Thank you for replying. We are delighted that there is a work around.
Please excuse my ignorance but I have never before entered a line of

macro.
Will you kindly be more specific as to how I enter this info. Thank you.

Janet

"Jay Freedman" wrote:

On Wed, 1 Jun 2005 19:04:09 -0700, Janet at Boeing Janet at
wrote:

I manage a publications dept and I have been hearing many complaints

about
the new 2002 MSWord. We work on many documents and the biggest

complaint so
far has to do with the track changes function. In the old version it

was
possible to SHOW ADDED TEXT WHILE HIDING DELETED TEXT. Does anybody

know if
this function is still available? If it isn't this is a huge mistake on
Microsoft's part and certainly not an upgrade but a big downgrade.


In Word 2002 the Track Changes options dialog left out the options for
deleted text, which was indeed a huge mistake that was rectified in
Word 2003. (Note that your 2002 version is no longer "new"!)

But you can still set the option by using this line of macro code:

Options.DeletedTextMark = wdDeletedTextMarkHidden

You can enter this in the Visual Basic immediate window (Alt+F11,
Ctrl+G). You only need to run it once. There are other values you can
set, which are self-explanatory: wdDeletedTextMarkStrikeThrough,
wdDeletedTextMarkUnderline, wdDeletedTextMarkBold, and so forth.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ:
http://word.mvps.org




  #6   Report Post  
Jay Freedman
 
Posts: n/a
Default

Don't let the word "macro" scare you. This is very simple.

- Open Word (any document, even a blank one).
- Press Alt+F11 (the shortcut for Tools Macro Visual Basic
Editor). The editor opens in a separate window.
- Press Ctrl+G (the shortcut for View Immediate Window). A pane
opens at the bottom of the editor, with the title "Immediate".
- Copy the following line from this post:

Options.DeletedTextMark = wdDeletedTextMarkHidden

- Put the cursor in the Immediate pane and paste.
- With the cursor on the same line as the text you just pasted, press
the Enter key.
- Click the red X to close the editor window. All done!

If you later want a different display for deleted text, repeat the
whole procedure except change the word wdDeletedTextMarkHidden to one
of the others I mentioned.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org

On Thu, 2 Jun 2005 10:24:02 -0700, Janet at Boeing Janet at
wrote:

Jay, Thank you for replying. We are delighted that there is a work around.
Please excuse my ignorance but I have never before entered a line of macro.
Will you kindly be more specific as to how I enter this info. Thank you. Janet

"Jay Freedman" wrote:

On Wed, 1 Jun 2005 19:04:09 -0700, Janet at Boeing Janet at
wrote:

I manage a publications dept and I have been hearing many complaints about
the new 2002 MSWord. We work on many documents and the biggest complaint so
far has to do with the track changes function. In the old version it was
possible to SHOW ADDED TEXT WHILE HIDING DELETED TEXT. Does anybody know if
this function is still available? If it isn't this is a huge mistake on
Microsoft's part and certainly not an upgrade but a big downgrade.


In Word 2002 the Track Changes options dialog left out the options for
deleted text, which was indeed a huge mistake that was rectified in
Word 2003. (Note that your 2002 version is no longer "new"!)

But you can still set the option by using this line of macro code:

Options.DeletedTextMark = wdDeletedTextMarkHidden

You can enter this in the Visual Basic immediate window (Alt+F11,
Ctrl+G). You only need to run it once. There are other values you can
set, which are self-explanatory: wdDeletedTextMarkStrikeThrough,
wdDeletedTextMarkUnderline, wdDeletedTextMarkBold, and so forth.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ:
http://word.mvps.org


  #7   Report Post  
Jay Freedman
 
Posts: n/a
Default

On Thu, 2 Jun 2005 10:43:06 -0700, Trixie
wrote:



"Jay Freedman" wrote:

On Wed, 1 Jun 2005 19:04:09 -0700, Janet at Boeing Janet at
wrote:

I manage a publications dept and I have been hearing many complaints about
the new 2002 MSWord. We work on many documents and the biggest complaint so
far has to do with the track changes function. In the old version it was
possible to SHOW ADDED TEXT WHILE HIDING DELETED TEXT. Does anybody know if
this function is still available? If it isn't this is a huge mistake on
Microsoft's part and certainly not an upgrade but a big downgrade.


In Word 2002 the Track Changes options dialog left out the options for
deleted text, which was indeed a huge mistake that was rectified in
Word 2003. (Note that your 2002 version is no longer "new"!)

But you can still set the option by using this line of macro code:

Options.DeletedTextMark = wdDeletedTextMarkHidden

You can enter this in the Visual Basic immediate window (Alt+F11,
Ctrl+G). You only need to run it once. There are other values you can
set, which are self-explanatory: wdDeletedTextMarkStrikeThrough,
wdDeletedTextMarkUnderline, wdDeletedTextMarkBold, and so forth.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ:
http://word.mvps.org


Jay,

I work for Janet. Let's say I want to TOGGLE between hiding deleted text and
showing deleted text (strikethough + red). Can this be done easily with
macros?
At the same time I would like to ALWAYS show added text (blue).

Thanks,
Joan (aka Trixie)


Yes, that's pretty simple. This macro will do (see
http://www.gmayor.com/installing_macro.htm for how to put it into a
template):

Sub ToggleTrackDeletions()
With Options
.DeletedTextColor = wdRed
If .DeletedTextMark = wdDeletedTextMarkHidden Then
.DeletedTextMark = wdDeletedTextMarkStrikeThrough
Else
.DeletedTextMark = wdDeletedTextMarkHidden
End If
End With
End Sub

Assign a toolbar button or shortcut key to this macro, and run it each
time you want to toggle in either direction.
(http://www.word.mvps.org/FAQs/Custom...oToToolbar.htm
and
http://www.word.mvps.org/FAQs/Custom...roToHotkey.htm
give directions.)

You can control the visibility and color of inserted text through the
Options dialog. It's only the deleted text whose controls were omitted
from the dialog.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
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
Document does not show inserted text Eugene New Users 1 May 26th 05 10:39 AM
In track changes, how do I show a balloon for my inserted comment? amw Microsoft Word Help 2 April 6th 05 11:51 PM
How can I ALT-Select vertical text without the research pane show. craigeryjohn Microsoft Word Help 1 March 9th 05 05:49 PM
Why won't text boxes show up in the normal view ? csmith Page Layout 3 February 10th 05 03:30 PM
Outline Renee Hendershott Page Layout 2 December 25th 04 02:49 PM


All times are GMT +1. The time now is 06:25 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"