Excel VBA:- simple data validation routing

SPiercy1978

New Member
Joined
Nov 10, 2010
Messages
7
I'm trying to use a very simple worksheet event handler procedure which should disallow any non numerical data from being entered into Cell A1. However when I enter text into Cell A1 nothing happens.

Any clues as to why this might be? I'm using Excel 2007.

Here is the event handler code which I created by clicking Worksheet and Change from the drop down menus

Private Sub Worksheet_Change(ByVal Target As Range)

If Target.Address = "$A1$" Then
If Not IsNumeric(Target) Then
MsgBox "Enter a number in Cell A1."
Range("A1").ClearContents
Range("A1").Activate
End If
End If

End Sub


Any help to understand why this is not activating would be highly appreciated.

Regards,

Simon
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Peter this also works for me:biggrin:
Was just going through...
PHP:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not IsNumeric(Range("A1")) Then
MsgBox "Enter a number in Cell A1."
Range("A1").ClearContents
Range("A1").Activate
End If
End Sub
 
Upvote 0

Forum statistics

Threads
1,221,526
Messages
6,160,340
Members
451,637
Latest member
hvp2262

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