Hello excel peeps,
@judgeh59 and @Leith Ross brought my vision into reality with the code below.
However after running this today in live testing ... discovered that I would like one more pop up.
Looking to modify the following code to add an additional pop up - however needs a different trigger point then the other pop ups.
Private Sub Worksheet_Change(ByVal Target As Range)
Dim r As Long
Dim Msg As String
If Target.Cells.Count > 1 Then Exit Sub
If Target.Row < 4 Then Exit Sub
If Intersect(Target, Range("G:G,I:I")) Is Nothing Then Exit Sub
If IsEmpty(Target) Then Exit Sub
r = Target.Row
If Cells(r, "G") = "No" And IsDate(Cells(r, 9)) Then
Msg = "In Row " & r & " Column G response is No - Change to Yes"
Cells(r, "G").Select
GoTo Finished
End If
If Cells(r, "G") = "N/A-Must add Comment" And IsDate(Cells(r, 9)) Then
Msg = "Reminder Must add comment to Column J Row " & r
Cells(r, "J").Select
GoTo Finished
End If
If Cells(r, "M") > 14 And IsDate(Cells(r, 9)) Then
Msg = "Add comment to Column J Row " & r & " resolution > 14 days"
Cells(r, "J").Select
End If
Finished:
If Msg <> "" Then MsgBox Msg, vbExclamation
End Sub
Trigger must be when Yes is selected in G .... Unlike the other pop ups that trigger when the date is entered in I
Message - Reminder add a correction date in Column I ... and select the cell in same row column I as the above do.
However if there is already a date in in column I no need to show popup.
Thanks in advance
Attached a test workbook in case needed.
Bookmarks