From: Scott on
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

From: Graham Mayor on
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


From: Scott on
"Graham Mayor" <gmayor(a)REMOVETHISmvps.org> �b�l��
news:ujZkhe22IHA.784(a)TK2MSFTNGP04.phx.gbl �����g...
> 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
>
>

Graham,

Many thanks for your useful advice.

Scott

From: Graham Mayor on
Scott wrote:
> "Graham Mayor" <gmayor(a)REMOVETHISmvps.org> �b�l��
> news:ujZkhe22IHA.784(a)TK2MSFTNGP04.phx.gbl �����g...
>> 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
>>
>>
>
> Graham,
>
> Many thanks for your useful advice.
>
> Scott

You are welcome :)

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

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