I am trying to get access to run this VBA code after the manufacture date is entered. the code should populate Legacy or New depending if the product was made before of after 1/31/08.
My code is acting like it is not running and I can't get access to break at the if statement for debuging. Am I doing something wrong?
My code is acting like it is not running and I can't get access to break at the if statement for debuging. Am I doing something wrong?
Code:
Private Sub Manufacture_Date_AfterUpdate() If (Me.Manufacture_Date > #1/31/2008#) Then Me.Legacy_Or_New = "New" Else Me.Legacy_Or_New = "Legacy" End If End Sub
Comment