Results 1 to 4 of 4

Modify Macro Code to include an extra Pop Up with different trigger

Threaded View

  1. #1
    Forum Contributor
    Join Date
    08-22-2005
    MS-Off Ver
    Office 365
    Posts
    342

    Modify Macro Code to include an extra Pop Up with different trigger

    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.
    Last edited by SVTF; 10-15-2014 at 11:49 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Need to modify formula to include extra condition
    By LeithKaouas in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 05-18-2014, 08:35 AM
  2. Help needed to modify the code to include the logic
    By reddys0909 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 03-17-2013, 09:28 PM
  3. Modify code to include header formatting
    By msmick in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 12-11-2011, 07:41 PM
  4. Need help to modify code to include more than 1 Column
    By coreytroy in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-15-2007, 02:08 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1