G
Guest
I cannot get my code to work! i am trying to just check
that when the user enters a value in cell Y13 that its a 9
digit numeric value
but every time i enter a value. it always goes to the last
condition "Must be 9 digits" even when i enter in a
correct value
what's wrong here?! help!
Private Sub Worksheet_Change(ByVal Target As Range)
On Error GoTo ws_exit:
Application.EnableEvents = False
If Not Intersect(Target, Me.Range("Y13")) Is Nothing
Then
With Target
'do something
If Len(Y13) = 9 Then
If IsNumeric(Y13) Then
Y13.NumberFormat = "###-###-###"
Else
MsgBox "Must be a number"
End If
Else
MsgBox "Must be 9 digits"
End If
End With
End If
ws_exit:
Application.EnableEvents = True
End Sub
that when the user enters a value in cell Y13 that its a 9
digit numeric value
but every time i enter a value. it always goes to the last
condition "Must be 9 digits" even when i enter in a
correct value
what's wrong here?! help!

Private Sub Worksheet_Change(ByVal Target As Range)
On Error GoTo ws_exit:
Application.EnableEvents = False
If Not Intersect(Target, Me.Range("Y13")) Is Nothing
Then
With Target
'do something
If Len(Y13) = 9 Then
If IsNumeric(Y13) Then
Y13.NumberFormat = "###-###-###"
Else
MsgBox "Must be a number"
End If
Else
MsgBox "Must be 9 digits"
End If
End With
End If
ws_exit:
Application.EnableEvents = True
End Sub