VBA Pop Up Message Query

tumblingbay

New Member
Joined
Dec 21, 2011
Messages
6
All,

Happy new year to everyone - I have another headache caused by VBA and am sure I'm missing something obvious!

I have a spreadsheet in which I require a pop up message to appear when a user enters certain criteria into a cell, specifically the letters 'AAP'. I have the following code on each sheet and it works a treat; however, the message seems to fire when ANYTHING is entered into a cell!

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
Dim rng As Range
Set rng = Range("C6:I30")
If Not Intersect(Target, rng) Is Nothing Then
On Error Resume Next
If rng = "AAP" Or "aap" Then
MsgBox "Please provide a reason for AAP"

End If
End If
Set rng = Nothing
End Sub

One other thing, I had to paste this into each worksheet (nearly 50 in toal) in order that it work - when I tried to paste into 'This Workbook' it wouldn't work at all?!
Any suggestions will be very welcome.
Thanks in advance,
TB
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Try

Code:
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
Dim rng As Range
Set rng = Range("C6:I30")
If Not Intersect(Target, rng) Is Nothing Then
    If UCase(Target.Value) = "AAP" Then
        MsgBox "Please provide a reason for AAP"
    End If
End If
End Sub
 
Upvote 0
Maybe this : (code in the workbook module)

Code:
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)

    Dim rng As Range
    
    Set rng = Range("C6:I30")
        If Not Intersect(Target, rng) Is Nothing Then
    '    On Error Resume Next
            If UCase(Target) = "AAP" Then
                MsgBox "Please provide a reason for AAP"
            End If
        End If
    Set rng = Nothing

End Sub
 
Upvote 0

Forum statistics

Threads
1,215,444
Messages
6,124,893
Members
449,194
Latest member
JayEggleton

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