Requiring popup message to run after 2 conditions are met.

FrancisM

Board Regular
Joined
Apr 12, 2016
Messages
139
I am trying to get a pop up message to run if the following 2 conditions are met "No" & "True". No is in cell range G4:G10, G13:G17; True is located in W4:W10, W13:W17. However true is a Boolean answer. I do have a formula located in cell range x4:x10, x13:x17 that concerts the Boolean answer to a 1 or 0. I thought that you had to convert a Boolean answer to a numeric answer to use in code.
Code:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
     'The code below is a reminder to enter data in the Referral Workbook.
     Application.ScreenUpdating = False
     Dim lastRow As Long
     Dim cell As Range
     lastRow = Range("G" & Rows.Count).End(xlUp).Row


For Each cell In Range("G4:G10, G13:g17" & lastRow)
    If InStr(1, cell.Value, "No") <> 0 Then
        If InStr(1, cell.Offset(, 17).Value, "1") <> 0 Then
        End If
    End If
Next


Application.ScreenUpdating = True
         MsgBox "Check to verify veteran data is entered in FY ## REFERALS." & vbCr & _
                "It's critical that the veteran data is captured." & vbCr & _
                "You have entered No into cell" & Target.Address, vbInformation, "Career Link Meeting List"
   
        Call Referals
    
  
 End Sub
When I run the code it sees the "no" & runs the message, & calls Referals. I have are 3 questions.
1.Do you have to convert Boolean answers to numeric?
2. How do you get excel to see the second condition?
3. Could you,explain what I am doing wrong?
 
Interesting, indeed. I know that when I downloaded the file it stripped stuff out that is not compatible with Excel online, but that is normally checkboxes comboboxes etc.
The October sheet has these headings in row 3


Excel 2013/2016
ABCDEFGHIJKLM
3NameLast 4Contact InformationIs this a Follow UpSC %Is a Follow Up RequestedNext meeting monthFollow up DateFollow up TimeFundedRequested Documentation for Next Visit/ Notes
October_Meeting_#_1


Is that what it should be?
 
Upvote 0

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
I just noticed that I only answered half the question. The code is to run on only the sheets that have Meeting in the name. When I checked Column G data Validation, I learned that here an overlap in Column H. I fixed that, Thanks to your sharp eye for detail.
 
Upvote 0
Header A = Numeric (Not important), Header B =Name, Header C = Last 4, Header D = Time (Not important), Header E = Contact information, F= Contact Information/CPRS (Check boxed ( no formula), Header G = Is this a follow up ( yes/No is related to the formula. Only interested in No), Header H = Check in ( a checkbox that is related to a Boolean TRUE/FALSE answer. Answer in Column W). Columns I through T don't have any formulas attached to them.
 
Upvote 0
OK, it looks as though some of the columns have been stripped out.
If I insert a new column so that col G is "Is this a follow up" then this code works for me.
Code:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
     'The code below is a reminder to enter data in the Referral Workbook.
     Application.ScreenUpdating = False
     Dim lastRow As Long
     Dim cell As Range
     lastRow = Range("G" & Rows.Count).End(xlUp).Row


   For Each cell In Range("G4:G10, G13:G17")
      If LCase(cell.Value) = "no" Then
         If cell.Offset(, 16).Value = True Then
            MsgBox "You have No & true"
         End If
      End If
   Next

Application.ScreenUpdating = True
 End Sub
 
Upvote 0
I copied your code, saved, & exited. Reopened, chose No in column G, checked the box in column H, visually saw that there was a TRUE I column W. There was no message shown.
 
Upvote 0
The code will not get triggered by clicking a checkbox, on;y by manually changing a cell, or with a data validation dropdown.
If you click a checkbox & then change col G does it work?
 
Upvote 0
No. Nothing.

Here is the code I was using for just the No response, prior to trying to include the Boolean answer in column W(22). It does work for only No.

Code:
'The code below is a reminder to enter data in the Referral Workbook.
     If Intersect(Target, Sh.Range("G:G")) Is Nothing Then Exit Sub
     If Target.Value <> "No" Then Exit Sub
     If ReferralsCalled = False Then
     'Shows a 3 line message box.
          MsgBox "Check to verify veteran data is entered in FY ## REFERALS." & vbCr & _
                 "It's critical that the veteran data is captured." & vbCr & _
                 "You have entered No into cell" & Target.Address, vbInformation, "Career Link Meeting List"
     
         Call Referals
     End If
     
 End Sub
 
Last edited:
Upvote 0
Try
Code:
'The code below is a reminder to enter data in the Referral Workbook.
     If Intersect(Target, Sh.Range("G:G")) Is Nothing Then Exit Sub
     If Target.Value = "No" And Target.Offset(, 16).Value = True Then
     'Shows a 3 line message box.
          MsgBox "Check to verify veteran data is entered in FY ## REFERALS." & vbCr & _
                 "It's critical that the veteran data is captured." & vbCr & _
                 "You have entered No into cell" & Target.Address, vbInformation, "Career Link Meeting List"
     
         Call Referals
     End If
     
 End Sub
 
Upvote 0

Forum statistics

Threads
1,223,908
Messages
6,175,306
Members
452,633
Latest member
DougMo

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top