+ Reply to Thread
Results 1 to 7 of 7

excel to paste to word then attach word document to an email

Hybrid View

ahalliwell excel to paste to word then... 10-24-2017, 09:06 AM
macropod Re: excel to paste to word... 10-26-2017, 04:36 AM
ahalliwell That great I'll get it tested... 10-29-2017, 06:29 AM
macropod Re: excel to paste to word... 10-29-2017, 07:06 AM
ahalliwell Re: excel to paste to word... 10-30-2017, 12:17 PM
ahalliwell Re: excel to paste to word... 10-30-2017, 12:34 PM
ahalliwell Re: excel to paste to word... 10-30-2017, 12:44 PM
  1. #1
    Registered User
    Join Date
    11-25-2016
    Location
    Warrington
    MS-Off Ver
    2010
    Posts
    60

    excel to paste to word then attach word document to an email

    Hi,

    Basically I'm trying to create a form in excel which can be filled in by the user, the content of the form isn't an issue and I am able to tell my macro to paste the excel data into a word document but now I want the same macro to attach the active word document to an email which I can then add body and subject too, again via the macro, I have previously been able to do an email macro but I cannot figure out how to combine them both, can anyone help, here is what I've got so far:

    Excel to word macro: (it currently saves it to my documents)
    Sub ControlWord()
        Dim appWD As Word.Application
        ' Create a new instance of Word & make it visible
        Set appWD = CreateObject("Word.Application.8")
        appWD.Visible = True
    
            Sheets("Template").Select
            Range("A1:F15").Copy
            ' Tell Word to create a new document
            appWD.Documents.Add
            ' Tell Word to paste the contents of the clipboard into the new document
            appWD.Selection.paste
            ' Save the new document with a sequential file name
            appWD.ActiveDocument.SaveAs Filename:="File" & i
            ' Close this new word document
            appWD.ActiveDocument.Close
    
        ' Close the Word application
        appWD.Quit
    End Sub
    Then this one creates a blank email with the suvject and body that I want:
     Dim Email_Subject, Email_Send_From, Email_Send_To, _
     Email_Cc, Email_Bcc, Email_Body As String
     Dim Mail_Object, Mail_single As Variant
     Email_Subject = "The subject of the email goes in here"
     Email_Send_From = ""
     Email_Send_To = "Randon@email.com"
     Email_Cc = ""
     Email_Bcc = ""
     Email_Body = "The body of the email would go in here"
     Set Mail_Object = CreateObject("Outlook.Application")
     Set Mail_single = Mail_Object.CreateItem(0)
     With Mail_single
     .Subject = Email_Subject
     .To = Email_Send_To
     .cc = Email_Cc
     .BCC = Email_Bcc
     .Body = Email_Body
     .send
     End With
    debugs:
     If Err.Description <> "" Then MsgBox Err.Description
    How do a smush these two together in one beautifully created macro?

  2. #2
    Forum Expert macropod's Avatar
    Join Date
    12-22-2011
    Location
    Canberra, Australia
    MS-Off Ver
    Word, Excel & Powerpoint 2003 & 2010
    Posts
    3,835

    Re: excel to paste to word then attach word document to an email

    Try something along the lines of:
    Sub SendDocAttach(i As Long)
    Dim wdApp As New Word.Application, wdDoc As Word.Document
    Dim olApp As Outlook.Application, olMail As Outlook.MailItem
    Dim strPath As String, bOL As Boolean
    strPath = ThisWorkbook.Path & "\": bOL = False
    On Error Resume Next
    Set olApp = GetObject(, "Outlook.Application")
    If olApp Is Nothing Then
      Set olApp = CreateObject("Outlook.Application")
      On Error GoTo 0
      If olApp Is Nothing Then
        MsgBox "Can't start Outlook.", vbExclamation
        GoTo ErrExit
      End If
      bOL = True
    End If
    Set wdDoc = wdApp.Documents.Add()
    With wdDoc
      .Range.Paste
      .SaveAs2 Filename:=strPath & "File_" & i & ".pdf", FileFormat:=wdFormatPDF, AddToRecentFiles:=False
      .Close wdDoNotSaveChanges
    End With
    With olApp
      Set olMail = .CreateItem(olMailItem)
      With olMail
        .To = "Randon@email.com"
        .Subject = "My Subject"
        .Body = "Body Text"
        .Attachments.Add Source:=strPath & "File_" & i & ".pdf"
        .Send
      End With
    End With
    Kill strPath & "File_" & i & ".pdf"
    ErrExit:
    wdApp.Quit: If bOL = True Then olApp.Quit
    Set olMail = Nothing: Set wdDoc = Nothing: Set wdApp = Nothing: Set olApp = Nothing
    End Sub
    Note that, with the above code, the attachment is saved & sent as a PDF, which is then deleted from disk. You can retain it there by deleting:
    Kill strPath & "File_" & i & ".pdf"
    Last edited by macropod; 10-26-2017 at 05:58 AM.
    Cheers,
    Paul Edstein
    [Fmr MS MVP - Word]

  3. #3
    Registered User
    Join Date
    11-25-2016
    Location
    Warrington
    MS-Off Ver
    2010
    Posts
    60
    That great I'll get it tested when I'm back at my laptop on Monday lol, out of interest, if my excel document gas a header how do u tell the header to also move to the word document?
    Last edited by AliGW; 10-29-2017 at 07:08 AM. Reason: Unnecessary quotation removed.

  4. #4
    Forum Expert macropod's Avatar
    Join Date
    12-22-2011
    Location
    Canberra, Australia
    MS-Off Ver
    Word, Excel & Powerpoint 2003 & 2010
    Posts
    3,835

    Re: excel to paste to word then attach word document to an email

    Whatever you want to include in the document from the Excel workbook, you either have to copy & paste from there or insert via another method. On reviewing the code I posted, it seems a line got dropped out somewhere along the way. You should insert:
    Sheets("Template").Range("A1:F15").Copy
    immediately before or after:
    Set wdDoc = wdApp.Documents.Add()
    Given that you're already copying Row 1, I'd have thought that would include whatever 'header' data you want.

    PS: The code provides, too, for you to pass your i variable to it; it's nowhere specified in the code you posted, so I have no idea where you're getting it from.

  5. #5
    Registered User
    Join Date
    11-25-2016
    Location
    Warrington
    MS-Off Ver
    2010
    Posts
    60

    Re: excel to paste to word then attach word document to an email

    Quote Originally Posted by macropod View Post
    Whatever you want to include in the document from the Excel workbook, you either have to copy & paste from there or insert via another method. On reviewing the code I posted, it seems a line got dropped out somewhere along the way. You should insert:
    Sheets("Template").Range("A1:F15").Copy
    immediately before or after:
    Set wdDoc = wdApp.Documents.Add()
    Given that you're already copying Row 1, I'd have thought that would include whatever 'header' data you want.

    PS: The code provides, too, for you to pass your i variable to it; it's nowhere specified in the code you posted, so I have no idea where you're getting it from.
    Thanks, yeah I think I left my i variable in by mistake, I chopped it from some previous work I had done where the I stood for something lol

    I'll let you know how I get on, that's for your help!

  6. #6
    Registered User
    Join Date
    11-25-2016
    Location
    Warrington
    MS-Off Ver
    2010
    Posts
    60

    Re: excel to paste to word then attach word document to an email

    Hi Macropod,

    I appear to be getting an error at the

    Dim olApp As Outlook.Application, olMail As Outlook.MailItem
    section, doesn't seem to want to progress past it and I keep getting a compile error, user defined type not defined.

    Do you know what could be causing this?

  7. #7
    Registered User
    Join Date
    11-25-2016
    Location
    Warrington
    MS-Off Ver
    2010
    Posts
    60

    Re: excel to paste to word then attach word document to an email

    Quote Originally Posted by ahalliwell View Post
    Hi Macropod,

    I appear to be getting an error at the

    Dim olApp As Outlook.Application, olMail As Outlook.MailItem
    section, doesn't seem to want to progress past it and I keep getting a compile error, user defined type not defined.

    Do you know what could be causing this?
    ignore me

    I didn't reference outlook, doh!!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Copy word document and Paste it as body of Email in Outlook (using VBA from Excel)
    By Asacras in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 01-06-2017, 10:23 AM
  2. Paste Lotus Notes email body to Word Document
    By Yash20 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-06-2016, 04:48 AM
  3. Call email and attach a word document
    By Ghostmonkey in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 06-21-2016, 05:00 AM
  4. email data from excel or create a word document
    By terence17 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 12-14-2015, 12:32 PM
  5. Replies: 1
    Last Post: 12-02-2014, 06:13 AM
  6. How to convert Word document to PDF and attach to an email ...
    By lapot in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 11-01-2014, 05:06 PM
  7. Replies: 1
    Last Post: 01-06-2006, 06:35 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1