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

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
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,036
Messages
6,122,794
Members
449,095
Latest member
m_smith_solihull

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