×
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Contact US

Log In

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips Forums!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

Posting Guidelines

Promoting, selling, recruiting, coursework and thesis posting is forbidden.

Students Click Here

Word says "marked as deleted text"

Word says "marked as deleted text"

Word says "marked as deleted text"

(OP)
I use Word 2002, and find Track Changes very useful for changing specifications.  You can leave the old text as deleted text so someone else knows what you are planning.  So far so good.

I also prepare detailed test plans to confirm that the changes have been done correctly.  In this context, it would sometimes be convenient to copy deleted text.  But Word forbids this with the message  "This selection is marked as deleted text".

It seems typical of Microsoft's outlook - disempower your customers on the grounds that they could have no good reason to do something Microsoft had not thought of.  A warning would be a sensible precaution.  But the approach is You'll do it our way, [OK].

Does anyone know of a work-round?  Anything simpler than rejecting the deletion, copying the text and then re-deleting?

yinyang Madawc Williams (East Anglia, UK).  Using Windows XP & Crystal 10 yinyang  

RE: Word says "marked as deleted text"

Not without some VBA.  Here is what I do.

CODE

Option Explicit

Public myString As String

Sub CopyMyDelete()
' Alt-1 is shortcut
myString = Selection.Text
End Sub


Sub PasteMyDelete()
' Alt-2 is shortcut
Selection.TypeText myString
End Sub
Now I can go into any TrackChange balloon, select deleted text and hit Alt-1.  Yes, perhaps it is silly, but you can not copy selected deleted text in VBA either.  However, you can make a public string variable that selected text.

Now I can move the Selection out of the ballon, and where ever I want, I can Alt-2 and the previously selected deleted text is typed in.  It will of course be marked as a Track Change insert.

Note that when you move the Selection out of the TrackChange ballon (where you grabbed the deleted text) you can use the Selection however you like.  The deleted text contents are in a string variable, NOT text associated with the selection itself.  You can do other stuff, and when you want - type in the deleted text with an Alt-2.

Or whatever method you wish to execute a procedure.  I like using the keyboard.

FAQ219-2884: How Do I Get Great Answers To my Tek-Tips Questions?

Gerry
My paintings and sculpture
 

RE: Word says "marked as deleted text"


Madawc,

I was able to copy text from the baloon. Well, not straight forward, but still. I think, I right-clicked on it, picked "Track changes" from that menue, THEN selected the text and Ctrl-C.

Then, after Ctrl-V in a new location, the whole baloon was copied over - so I rejected chenges in that new one.

Once, though, I was able to copy actual text, not baloon, to a new location - I don't know what I pressed. Really. Worth a few more attempts to find out.
 

RE: Word says "marked as deleted text"

Try this (works in 2003, and I'm pretty sure I used this trick in earlier versions):

Document A:

Turn track changes on.

Delete some stuff.

Turn track changes off.

Copy some stuff, including deleted stuff

Document B:

Turn track changes off.

Paste.

Deleted stuff will paste in as deleted (strike-thru).

RE: Word says "marked as deleted text"

Above works with deleted text as strike-thru.  I don't know about the stupid balloons.

RE: Word says "marked as deleted text"

(OP)
Thanks for the tips.

yinyang Madawc Williams (East Anglia, UK).  Using Windows XP & Crystal 10 yinyang  

Red Flag This Post

Please let us know here why this post is inappropriate. Reasons such as off-topic, duplicates, flames, illegal, vulgar, or students posting their homework.

Red Flag Submitted

Thank you for helping keep Tek-Tips Forums free from inappropriate posts.
The Tek-Tips staff will check this out and take appropriate action.

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members! Already a Member? Login

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close