how do I insert as unformatted text i Word 2007

  • Thread starter Thread starter ealadi
  • Start date Start date
E

ealadi

In Office 2003 I often used the command:
Insert - Insert special - unformattet text (tranlated from Danish)

How to I use this option in Word 2007? - In Excel it is available via
a mouse right-click.

Thank you
Ealadi
 
It's on the Home tab - little arrow below the Paste button (or you could add
a macro to the QAT or keyboard shortcut
Sub PasteUnfText()
On Error GoTo Oops
Selection.PasteSpecial DataType:=wdPasteText, Placement:= _
wdInLine
End
Oops:
Beep
End Sub
http://www.gmayor.com/installing_macro.htm )


--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Back
Top