Validate User form text box

tiredofit

Well-known Member
Joined
Apr 11, 2013
Messages
1,834
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
The code below checks for the value entered into the textbox.

Code:
Private Sub Date_Change()

    If Not IsDate(Date.Value) Then
        
        MsgBox "Must be a date"
    
    End If
    
End Sub

The problem is whenever the user attempts to enter a date, such as 01/01/2018, as soon as 0 is typed, the code above starts and the MsgBox is displayed.

How can I change it so the above code only starts when the full date have been entered?

Code:
Application.EnableEvents = False

does NOT suppress the above.

Thanks
 
Last edited:

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Use the Exit or AfterUpdate event of the textbox instead of the Change event.
 
Upvote 0
Thanks, works well.

BTW, what's the difference between AfterUpdate and Exit?
 
Upvote 0
Exit is fired every time you leave the control, whether or not it was changed.
 
Upvote 0

Forum statistics

Threads
1,215,562
Messages
6,125,546
Members
449,237
Latest member
Chase S

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