Reminder Message

adamsm

Active Member
Joined
Apr 20, 2010
Messages
444
Hi,

How could I create a message "Please Try Again" If the user types any text in Cell M9 other than the text "Other"?

Any help on this would be kindly appreciated.

Thanks in advance.
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Use data validation, Data>>Data Validation>>List, put Other in the values box and set your error message
 
Upvote 0
Im sorry but Im not wanting an error message. But im wanting a custom message to give an instruction to the user. "Please Try Again" is an example. My original message is Please enter Customer ID". Having this situation should I still do what you have mentioned?
 
Upvote 0
Hi,

How could I create a message "Please Try Again" If the user types any text in Cell M9 other than the text "Other"?

Any help on this would be kindly appreciated.

Thanks in advance.

Your OP has been answered in a similar vain by two individuals. If you need this to do something else then explain it in full so you can get a complete response.
 
Upvote 0
What I want is a worksheet even code that would popup a custom message saying "Please enter Customer ID" if the user types any text in cell M9 other than the text "Other".

I hope I've made my question clear.
 
Upvote 0
If you use data Validation (on cell A1 for example), with style set to Information and the formula =(A1="Other"_, the message will be delivered when the user enters anything but "Other".

Event code is inferior to the built in DataValidation for this task.
 
Upvote 0
It is clear, and you might take a few minutes to read the information at the link.
 
Upvote 0
This is what I wanted.

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Range("M9") <> "Other" Then
    MsgBox "Please enter Customer ID"

End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,285
Members
452,902
Latest member
Knuddeluff

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