How to paste unformatted text?

D

Dario de Judicibus

90% times I have to paste text inside a Word document from other sources
and/or Word documents I *have* to paste it as Unformatted Text or
Unformatted Unicode Text. To do that I have to go to Paste Special and
select the corresponding format. A significant waste of time. Furthermore
there is no way to do that by using a shortcut, since in the best of cases I
can associate a shortcut to Paste Special, not to Paste Unformatted Text.

Any solution?

DdJ
 
S

Stefan Blom

Try a macro such as the following, which I simply created by using the
macro recorder:

Sub PasteAsUnformattedText()
On Error Resume Next
Selection.PasteSpecial Link:=False, _
DataType:=wdPasteText, Placement:= _
wdInLine, DisplayAsIcon:=False
End Sub
 
D

Dario de Judicibus

Stefan, thank you very much for useful macro and url. You solved my problem.

DdJ
 

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

Top