View Single Post
  #2   Report Post  
Suzanne S. Barnhill
 
Posts: n/a
Default

See http://www.gmayor.com/installing_macro.htm

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
Word MVP FAQ site: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

"geeoff81" wrote in message
...
Sorry for being ignorant, but I'd really like to create a way to have a
keyboard shortcut for paste-special past unformated text. How do I use

what
you've typed below to do that? I'm not very familiar with macros, so some
basic instructions would be appreciated.

Thanks!!!

"Graham Mayor" wrote:

Who knows what Microsoft is thinking, but it is fairly simple to create

a
macro to do this - and apply a shortcut to it (as you found eventually).

Sub PasteUnfText()
On Error GoTo Oops
Selection.PasteSpecial DataType:=wdPasteText, Placement:= _
wdInLine
End
Oops:
Beep
End Sub

will do the trick.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org





lbatt wrote:
Does Microsoft have any plans to make an easy keyboard shortcut for
"Paste Special Unformatted Text" in future versions of Word? I
created a Macro to do it and use "Ctrl+Alt+V" as the shortcut; this
works really well but it took me awhile to figure out how to do it.