Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I need some help with a macro I am creating. I have the following code to create an email Code: -------------------- Sub Reminder() Dim myOutlook As Object Dim myMailItems As Object Dim strbody As String Dim recipient As String With ThisWorkbook.ActiveSheet Set OutApp = CreateObject("Outlook.Application") Set OutMail = OutApp.CreateItem(olMainItem) strbody = "This is a reminder" End With 'Central If ActiveSheet.Range("E6:E2000") = "a" Then recipient = " With OutMail .To = recipient .CC = "" .BCC = "" .Subject = "Reminder" .Body = strbody .Display End With Set OutMail = Nothing Set OutApp = Nothing End Sub -------------------- If you look at the attachment, I will have various sheets with Estimators initials (KM is just one sample). What I would like to do is create a macro that will run on the active sheet (so whomever is looking at their own report can run the email on their data only), and send emails to those with days remaining <5. As well, I would like it to send to the specialists who are associated with the zones that have checkmarks. I also have the specialists listed on a separate sheet with their email addresses. I was thinking about using an IF statement, but not sure how I would do that. Any help would be much appreciated. Thanks -- tanyhart ------------------------------------------------------------------------ tanyhart's Profile: http://www.excelforum.com/member.php...o&userid=35148 View this thread: http://www.excelforum.com/showthread...hreadid=555082 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Send To Email recipient one sheet from workbook | Excel Discussion (Misc queries) | |||
.xls email attachments are arriving at the recipient as .dat file. | Excel Discussion (Misc queries) | |||
checkbox to remove recipient from email | Excel Programming | |||
Checkbox to remove recipient from email | Excel Programming | |||
File...Send To...Email Recipient | Excel Programming |