View Single Post
  #2   Report Post  
Posted to microsoft.public.word.pagelayout
Graham Mayor Graham Mayor is offline
external usenet poster
 
Posts: 19,312
Default Use default format

Use Paste Paste Special Unformatted Text
or the following macro

Sub PasteUnfText()
On Error GoTo Oops
Selection.PasteSpecial DataType:=wdPasteText, _
Placement:=wdInLine
End
Oops:
Beep
End Sub
http://www.gmayor.com/installing_macro.htm

To adopt the style at the insertion point.

--

Graham Mayor - Word MVP

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



Scott wrote:
I often copy lots of text from other documents and web page into Word
document. Once I do it, I have to re-format the text to my default
format. Is there any function in Office 2007 to remain the default
format for any import document?

Thanks,

Scott