जब मापदंड मेल नहीं खाते हैं तो एक्सेल vba मैक्रो कुछ भी नहीं करते हैं


0

मैं एक मैक्रो लागू कर रहा हूं जो कॉलम ई को उन तिथियों के लिए जांचता है जो वर्तमान तिथि से 7 दिन दूर हैं।

If cell date - current date = 7

फिर एक मेल जिसमें पंक्ति होती है जिसमें मिलान सेल होता है, को सूचित करने के लिए एक ईमेल पते पर भेजा जाता है।

यह मेरी कोडिंग है यह एक मुद्दे को छोड़कर, सफलतापूर्वक काम करता है।

Sub Workbook_Open()

Dim rngStart As Range
Dim rngEnd As Range
Dim rngCell As Range
Dim strHtmlHead As String
Dim strHtmlFoot As String
Dim strMsgBody As String
Dim strMsg As String
Dim objEmail As Object
Dim OutlookApp As Object
Dim OutlookMail As Object

'On Error GoTo ErrHnd

'only run if between midnight and 2AM
'If Hour(Now) < 2 Then

'setup basic HTML message header and footer


'setup start of body of message
strMsgBody = "The following task(s) are due in less than 7 days :"

'Worksheet name
With Worksheets("Sheet1")
'set start of date range
Set rngStart = .Range("E1")
'find end of date range
Set rngEnd = .Range("E" & CStr(Application.Rows.Count)).End(xlUp)

'loop through all used cells in column G
For Each rngCell In .Range(rngStart, rngEnd)
'test if date is equal to 7 days from today
If IsDate(rngCell.Value) Then
If rngCell.Value - Int(Now) = 7 Then
'add to message - use task name from column A (offset -3)
'change as required
strMsgBody = strMsgBody & "
" & "
" & "Task: " & rngCell.Offset(0, -3).Text _
& " is due on " & rngCell.Text & "
" & "
" & "Therefore please take necessary action"
End If
End If
Next rngCell

'Note last test time/date
rngEnd.Offset(1, -3) = Now
rngEnd.Offset(1, -3).NumberFormat = "dd/mm/yy"
End With

'put message together
strMsg = strMsgBody

'test message
'MsgBox strMsg

'create the e-mail object


Set OutlookApp = CreateObject("Outlook.Application")
Set OutlookMail = OutlookApp.CreateItem(0)

With OutlookMail

.To = "adrianadriananthony@outlook.com"
.CC = ""
.BCC = ""
.Subject = "Task Alert"
.HTMLBody = strMsg
.Send
End With


Set OutlookMail = Nothing
Set OutlookApp = Nothing

Application.DisplayAlerts = True
Application.ScreenUpdating = True


'remove the e-mail object

Exit Sub

'error handler
ErrHnd:
Err.Clear

End Sub

यह एक मुद्दे को छोड़कर, सफलतापूर्वक काम करता है। जब कोई भी तारीखें मापदंड को पूरा नहीं करती हैं

 rngCell.Value - Int(Now) = 7

किसी भी कार्य को निर्दिष्ट किए बिना अभी भी एक ईमेल उत्पन्न होता है। मैं कोड को संपादित करना चाहता हूं ताकि निम्नलिखित मानदंडों को पूरा करने की कोई तारीख न होने पर कोई ईमेल न भेजा जाए

rngCell.Value - Int(Now) = 7

इसे कैसे प्राप्त किया जा सकता है?

जवाबों:


1

एक बूलियन चर बनाएँ, के लिए सेट झूठी पाश से पहले और के लिए इसे बदल सच ही जब तिथियों की तुलना में सच है। फिर, ईमेल भेजने से पहले चर की स्थिति की जाँच करें । आप ये बदलाव कर सकते हैं:

1 - लूप से पहले , रेखा के ऊपर लाइन For Each rngCell In .Range(rngStart, rngEnd)डालते हैं ValidDate = False

2 - If rngCell.Value - Int(Now) = 7 Thenलाइन लगाने के बाद ValidDate = True

3 - लाइन Set OutlookApp = CreateObject("Outlook.Application")डालने से पहले :If ValidDate = True Then

4- लाइन के बाद अगर ब्लॉक लगाना बंद कर दें.Send End WithEnd If

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.