0
我很基本與VBA &我發現下面的代碼發送電子郵件時超過單元格的值。我試圖修改代碼,以便在將日期輸入到空白單元格(以便完成操作)或單元格文本從「正在進行」到「完成」有日期的細胞的種羣。任何幫助將非常感激。發送電子郵件在VBA代碼
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Not Application.Intersect(Range("J1:J3000"), Target) Is Nothing Then
If IsNumeric(Target.Value) And Target.Value > 1 Then
Call Mail_small_Text_Outlook
End If
End If
End If
End Sub
所以文'Complete'將列**'K' **? – ManishChristian