View Single Post
 
Old 08-25-2015, 02:32 PM
eYos eYos is offline Windows XP Office 2003
Novice
 
Join Date: Aug 2015
Posts: 1
eYos is on a distinguished road
Default copy and paste Outlook Email bodytext to Word document

It sounds pretty simple. I am trying to create copy Outlook’s e-mail bodytext with "Match Destination Formatting" to a placeholder text in a Word document.

I have been trying for hours to record different workflows. None of them are working. I am using Office 2003 and VB 6.5

Here’s my VBA code.

Public Sub CopyPaste()
Selection.Copy
Dim objDoc As Word.Document
Selection.PasteAndFormat (wdFormatSurroundingFormattingWithEmphasis)
Set objDoc = Nothing
Set objSel = Nothing
End Sub


Where can I download templates for this simple workflow? Thank you any advice or help.
Reply With Quote