Yes, sending the e-mail is relatively simple. The hardest bit will is data validation and calculations to find the which is @ -60 days
Set a few of the dates in your workbook to around April and it will pick them up and send an e-mail off (make sure you have your e-mail in the cells when testing it)
I've put some tests and it send emails. I've put some minor error traps in there for missing data but you may need more.
I recommend the John Walkenbach (think thats his name) Excel VBA programming book if you are getting started, its certainly helped me. As also the help received on this forum!
Heres something that should get you started, place it in a Module -
Public fail As Boolean
Sub Ping(Direct As String, firstn As String, secondn As String, Expdata As String, linem As String)
Dim aOutlook As Object
Dim aEmail As Object
Set aOutlook = CreateObject("Outlook.Application")
Set aEmail = aOutlook.CreateItem(0)
If Direct = "" Then
MsgBox "No email address supplied, cannot continue" & vbNewLine & Expdata, vbExclamation
GoTo Errh1
End If
If firstn = "" Then If Not MsgBox("No first name given, continue?" & vbNewLine & Expdata _
, vbYesNo + vbQuestion) = vbYes Then GoTo Errh1 Else
If secondn = "" Then If Not MsgBox("No second name given, continue?" & vbNewLine & Expdata _
, vbYesNo + vbQuestion) = vbYes Then GoTo Errh1 Else
If Expdata = "" Then If Not MsgBox("No expiration data given, continue?" & vbNewLine & Expdata _
, vbYesNo + vbQuestion) = vbYes Then GoTo Errh1 Else
If linem = "" Then If Not MsgBox("No line manager data given, continue?" & vbNewLine & Expdata _
, vbYesNo + vbQuestion) = vbYes Then GoTo Errh1 Else
aEmail.To = Chr(32) & Direct & Chr(32) 'use your email address when testing
aEmail.Subject = "URGENT ATTENTION FOR " & linem & " - Expiration of certificate"
aEmail.Body = "Employee - " & firstn & " " & secondn & " has " & Expdata & _
" expiring soon" & vbCrLf & vbCrLf & "Any issues please contact your supervisor"
aEmail.cc = "your@e-address.com" 'enter you e-mail address here
aEmail.Send
Exit Sub
Errh1:
fail = True
End Sub
Sub ExpirationAnalysis()
Dim eAddress As String
Dim fName As String
Dim sName As String
Dim ExpirationData As String
Dim LineManager As String
Dim MyDate As Date
MyDate = Date
Dim TestRange As Range
Dim c As Variant
Set TestRange = ActiveSheet.Range("G7:T13") ' this is the range of dates/ data it will be testing for the 60 day difference
For Each c In TestRange
If IsDate(c.Value) = True Then
If DateValue(c.Value) - MyDate <= 60 And DateValue(c.Value) - MyDate >= 0 Then
eAddress = Range("B" & c.Row).Value
fName = Range("D" & c.Row).Value
sName = Range("C" & c.Row).Value
ExpirationData = Cells(6, c.Column).Value
LineManager = Range("A" & c.Row).Value
Call Ping(eAddress, fName, sName, ExpirationData, LineManager)
c.Interior.Color = vbGreen
If fail = True Then
c.Interior.Color = vbCyan
fail = False
End If
eAddress = ""
fName = ""
sName = ""
ExpirationData = ""
LineManager = ""
End If
End If
Next c
End Sub
Bookmarks