Stop Looping If Cell Equals "X"

JCruz

New Member
Joined
Aug 25, 2015
Messages
4
Hello, I've been searching the forum to help me with my problem.

I've managed to put a code together using the tips I have found on the forum. However, if I continue working the message keeps popping up.

How do I make it stop?

Thanks in advance.

Private Sub Worksheet_Change(ByVal Target As Range)
'ActiveSheet.Unprotect Password:="PSWRD"
'Application.ScreenUpdating = False

If Range("E19").Value = "x" Then

If MsgBox("You have selected X." & vbNewLine & _
"" & vbNewLine & _
"Do you wish to continue?", vbYesNo, "Select X") = vbNo Then Exit Sub
End If

If Range("E19").Value = "y" Then
If MsgBox("You have selected Y." & vbNewLine & _
"" & vbNewLine & _
"Do you wish to continue?", vbYesNo, "Select Y") = vbNo Then Exit Sub

End If
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Hi. What is supposed to happen if i click yes or no on the message box? As it stands it wouldnt make any difference. To address your other issue use this line at the top:

Code:
If Intersect(Target, Range("E19")) Is Nothing Then Exit Sub
 
Upvote 0
Hi Steve, thanks for the quick reply.

If you click on Yes, you can continue using the form. If you click on No, then ideally you cannot progress or another msgbox pops up and says, "Sorry, you are unable to progress."

Hope that makes sense.
 
Upvote 0
Ok so there is more code. Use that line i gave you and you will only get the prompts if you change cell E19. Another thing to be aware of is there is a difference between Y and y so you solve that potential problem by using:

Code:
If LCase(Range("E19").Value) = "y" Then

so now the user can use Y or y and still get the prompt.
 
Upvote 0
Sorry, Steve. It doesn't work for me.

This is what I did.

I obviously am not doing it right.

Code:
If Intersect(Target, Range("E19")) Is Nothing Then Exit Sub
    
If LCase(Range("E19").Value) = "x" Then

If MsgBox("You have selected y.", vbYesNo, "Selected Y") = vbNo Then Exit Sub

End If

Ok so there is more code. Use that line i gave you and you will only get the prompts if you change cell E19. Another thing to be aware of is there is a difference between Y and y so you solve that potential problem by using:

Code:
If LCase(Range("E19").Value) = "y" Then

so now the user can use Y or y and still get the prompt.
 
Upvote 0
Try it like this:

Code:
Private Sub Worksheet_Change(ByVal Target As Range)

Dim rng As Range

Set rng = Intersect(Target, Range("E19"))
If Not rng Is Nothing Then
    If LCase(rng.Value) = "x" Or LCase(rng.Value) = "y" Then
        If MsgBox("You have selected " & UCase(rng.Value) & "." & vbNewLine _
        & "Do you wish to continue?", vbYesNo, "Select " & UCase(rng.Value)) = vbNo Then
            Exit Sub
        Else
            MsgBox "You pressed yes!"
            'do something if user selects yes
        End If
    End If
End If

End Sub
 
Upvote 0
Yessss!!! It works if the user types in "x" or "y"!

What do I need to do is if the "x" and the "y" are generated by a formula in E19?

Many thanks for your time - really!
 
Upvote 0

Forum statistics

Threads
1,214,827
Messages
6,121,816
Members
449,049
Latest member
cybersurfer5000

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