Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Using VB is it possible to use specific cell data and import this into the
subject field of an email Can easliy create code to email the excel document succesfully, but need to grab certain information from specific cells and put this into the subject line using office 2003 |
#2
![]() |
|||
|
|||
![]()
I've never worked with the Outlook object model, but
after scanning some of Ron de Bruin's code at: http://www.rondebruin.nl/sendmail.htm wouldn't you use something like: Dim OutApp As Outlook.Application Dim OutMail As Outlook.MailItem Set OutApp = CreateObject("Outlook.Application") Set OutMail = OutApp.CreateItem(olMailItem) With OutMail .Subject = Cells(1,1).Value 'Value in A1 End With --- HTH Jason Atlanta, GA -----Original Message----- Using VB is it possible to use specific cell data and import this into the subject field of an email Can easliy create code to email the excel document succesfully, but need to grab certain information from specific cells and put this into the subject line using office 2003 . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
copy/print specific data | Excel Worksheet Functions | |||
Pulling data from 1 sheet to another | Excel Worksheet Functions | |||
inserting data from a row to a cell, when the row number is specified by a formula in a cell | New Users to Excel | |||
GET.CELL | Excel Worksheet Functions | |||
How do I include cell data in subject line of email address/hyperl | Excel Worksheet Functions |