I would like to create a macro that will do a Special Paste (from the
clipboard) as unformatted text.

The paste is coming from an Excel file and everytime I run the macro it
pastes it as a table and I want it unformatted.

Help !! ... Thanks a bunch
JW :o)

Re: Macro Paste Special by Greg

Greg
Tue Aug 23 10:26:40 CDT 2005

Sub PasteSpec()
Selection.PasteSpecial DataType:=wdPasteText
End Sub


Re: Macro Paste Special by EFList

EFList
Tue Aug 23 23:16:01 CDT 2005

Here is what I created:

Sub PasteSimple()
'
' PasteSimple Macro
' Macro recorded 6/23/2005 by pnajoan
'
Selection.PasteSpecial Link:=False, DataType:=wdPasteText
End Sub

Enjoy!


JW wrote:
> I would like to create a macro that will do a Special Paste (from the
> clipboard) as unformatted text.
>
> The paste is coming from an Excel file and everytime I run the macro it
> pastes it as a table and I want it unformatted.
>
> Help !! ... Thanks a bunch
> JW :o)