When a date field contains an invalid date, it needs to be flagged. However, my code is not acknowledging it. For instance, it doesn't recognize 8/15/0007 as a bad date. Any assistance would be appreciated.
Code:
If IsDate(rst_AllText_PRData_Editable_Dates![Contract Effective Date]) = False Then
rst_tbl_PRData_Error_Dates.Add
rst_tbl_PRData_Error_Dates.[Contract Effective Date] = rst_AllText_PRData_Editable_Dates![Contract Effective Date]
rst_tbl_PRData_Error_Dates.Update
End If
Comment