I have written a macro in WordXP/Word2003 that simply does a Paste Special - Unformatted. This macro works fine; however, one of our users has Word 2000, and the macro causes an error on his computer. Can anyone tell me how to modify this macro to work on Word 2000:
Sub PasteUnformatted()
Selection.PasteSpecial Link:=False, DataType:=wdPasteText
End Sub
Thanks in advance for your help.
Sub PasteUnformatted()
Selection.PasteSpecial Link:=False, DataType:=wdPasteText
End Sub
Thanks in advance for your help.