Help and Support
 

powered byLive Search

How to send a range of cells in an e-mail message by using Visual Basic for Applications in Excel

Article ID:816644
Last Review:February 1, 2007
Revision:7.2

SUMMARY

In Microsoft Excel, you can send a section of a workbook as an e-mail message. This article contains sample Microsoft Visual Basic for Applications (VBA) code that demonstrates how to automate sending a range of cells in an e-mail message.

Back to the top

MORE INFORMATION

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.
The following VBA code sample sends a range of ten cells, A1 through B5, from the currently active workbook to the e-mail address specified in the code:
Sub Send_Range()
   
   ' Select the range of cells on the active worksheet.
   ActiveSheet.Range("A1:B5").Select
   
   ' Show the envelope on the ActiveWorkbook.
   ActiveWorkbook.EnvelopeVisible = True
   
   ' Set the optional introduction field thats adds
   ' some header text to the email body. It also sets
   ' the To and Subject lines. Finally the message
   ' is sent.
   With ActiveSheet.MailEnvelope
      .Introduction = "This is a sample worksheet."
      .Item.To = "E-Mail_Address_Here"
      .Item.Subject = "My subject"
      .Item.Send
   End With
End Sub
Note This code only works with Microsoft Outlook. It does not work with any version of Microsoft Outlook Express.
Replace E-Mail_Address_Here with the e-mail address that you want to send the range to.

Note Item.Send in the code triggers an Outlook security warning to display the following message:
A program is trying to automatically send e-mail on your behalf. Do you want to allow this? If this is unexpected, it may be a virus and you should choose "No".
Click Yes to allow the mail to be sent.

Back to the top

REFERENCES

For more information, click the following article number to view the article in the Microsoft Knowledge Base:
290500 (http://support.microsoft.com/kb/290500/) Description of the developer-related e-mail security features in Outlook 2002

Back to the top


APPLIES TO
Microsoft Office Excel 2007
Microsoft Office Excel 2003
Microsoft Excel 2002 Standard Edition
Microsoft Outlook 2002 Standard Edition

Back to the top

Keywords: 
kbcode kbvba kbemail kbhowto KB816644

Back to the top

Article Translations

 

Other Support Options

  • Need More Help?
    Contact a Support professional by E-mail, Online or Phone.
  • Customer Service
    For non-technical assistance with product purchases, subscriptions, online services, events, training courses, corporate sales, piracy issues, and more.
  • Newsgroups
    Pose a question to other users. Discussion groups and Forums about specific Microsoft products, technologies, and services.