Hey all,
I use this small code to check if the date entered is in the future or not.
If it is the user gets a messagebox and the cell should empty.
Private Sub txtStDate_Change()If CDate(txtStDate.Value) > Date Then
MsgBox "The date of observation is in the future." & vbCrLf & "This is not...