|  

» Mail Sheet Array using VBA in Microsoft Excel

VBA macro tip contributed by Ron de Bruin, Microsoft MVP - Excel
  • Create a new workbook with the SheetsArray.
  • Save the workbook before mailing it.
  • Delete the file from your hard disk after it is sent.
Sub Mail_SheetsArray()
    Dim strDate As String
    Sheets(Array("Sheet1", "Sheet3")).Copy
    strDate = Format(Date, "dd-mm-yy") & " " & Format(Time, "h-mm-ss")
    ActiveWorkbook.SaveAs "Part of " & ThisWorkbook.Name _
                        & " " & strDate & ".xls"
    ActiveWorkbook.SendMail "ron@debruin.nl", _
                            "This is the Subject line"
    ActiveWorkbook.ChangeFileAccess xlReadOnly
    Kill ActiveWorkbook.FullName
    ActiveWorkbook.Close False
End Sub

Rate This Tip
12 34 5
Rating: 3.77     Views: 23089
No comments have been submitted.
Click here to post comment
For Registered Users
Name
Comment Title
Comments