blah read your description other way round
i made it only email if completed
Dim i, lRow As Long
Dim OutApp, OutMail As Object
Dim strto, strcc, strbcc, strsub, strbody As String
Set OutApp = CreateObject("Outlook.Application")
OutApp.Session.Logon
Set OutMail = OutApp.CreateItem(0)
i = 2
lRow = Range("A65536").End(xlUp).Row
For i = 1 To lRow
If Cells(i, 8).Value = "Inprogress" Then
With Sheets("sheet 1")
strto = Cells(i, 6).Value
strcc = ""
strbcc = ""
strsub = Cells(i, 7).Value
strbody = "One of your action has reached the target date, Pls. do the needful at the earliest"
End With
With OutMail
.to = strto
.CC = strcc
.BCC = strbcc
.Subject = strsub
.Body = strbody
'.Send
.display
End With
End If
Next i
Set OutMail = Nothing
Set OutApp = Nothing
End Sub
amended code with your subject
Bookmarks