Pop up message when data is entered

jlbrowneyes

New Member
Joined
Dec 19, 2013
Messages
7
Hello. I am new to the site but have already found a TON of helpful information! I would like some assistance with a 2007 Excel spreadsheet. My company currently shares ONE spreadsheet to generate new project numbers (Shown below). My issue is once a new number is assigned, it is supposed to be entered into our accounting software but that doesn’t appear to be happening in some cases.
Is there a way that a pop up message can appear when column G is populated (Entered by)? Something like, “please be sure to enter this XYZ”.

Thank you in advance for any advice or assistance you are able to offer!
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
You could create a worksheet event. In your VBA Editor, select the desired sheet then on the top you choose "worksheet" from the drop down menu and on the right drop down you need to choose "change" then you can enter

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 7 Then
MsgBox "Please be sure to enter " & Target.Value
End If
End Sub
 
Upvote 0
URL]


First you need to double click one of the sheets, the one where your data is then you will see the above image
 
Upvote 0
dag on, you are good!!!!
Now the pop up window appears except after the last word "Vision" somehow it's showing up as "Visionfsds". Do you know why?

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 7 Then
MsgBox "Please be sure to enter as opportunity in Vision" & Target.Value
End If

End Sub
 
Upvote 0
Target.Value represents what you are typing into the cell, so I guess you are typing Visionfsds?
 
Upvote 0
The pop up only appears when the column is populated from my computer. Can it appear regardless of who enters the data from wherever? Remember, this spreadsheet is shared among all employees.
 
Upvote 0

Forum statistics

Threads
1,215,053
Messages
6,122,888
Members
449,097
Latest member
dbomb1414

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