Existe alguma solução sem rejeitar a exclusão?
Solução 1:
Select the deleted text plus an extra word.
Then you should be able to copy without getting the error message.
Paste the text into the other document.
Delete the extra word.
Fonte Não é possível copiar o texto marcado como excluído
Solução 2:
Use the following VBA 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 balloon, 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.