Use default format

S

Scott

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
 
G

Graham Mayor

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


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
S

Scott

Graham Mayor said:
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


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>

Graham,

Many thanks for your useful advice.

Scott
 
G

Graham Mayor

Scott said:
Graham,

Many thanks for your useful advice.

Scott

You are welcome :)

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


<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 
Top