Forums
New posts
Search forums
Members
Current visitors
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Forums
Archive
Newsgroup Archive
Excel Newsgroups
Excel Misc
how to get a warning when data is entered wrongly
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
Reply to thread
Message
[QUOTE="lhkittle, post: 7410041"] See if this does what you want. Copy into the sheet module. Private Sub Worksheet_Change(ByVal Target As Range) Dim I As Integer, J As Integer I = Range("E3") J = Range("K3") If I <> J Then MsgBox "E Does Not Equal K" End If End Sub Regards, Howard [/QUOTE]
Verification
Post reply
Forums
Archive
Newsgroup Archive
Excel Newsgroups
Excel Misc
how to get a warning when data is entered wrongly
Top