View Single Post
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Macro not holding - 2003 SBE

This is not something you can record - use the following instead:

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
Word MVP web site http://word.mvps.org



Jan wrote:
The macro I have attempted to create is Edit/Paste
Special/Unformatted Text.

Problem is.. that even though I have gone through the assign keyboard
CRTL+., recorded the macro (run macro Edit/PasteSpecial/Unformatted
Text - stop recording), when I go to use the command CRTL+. the font
formatting is being pasted into the document rather than the
"unformatted text."

Can anyone tell me what I might be doing wrong?

Thanks for the help!!

Jan