i have created a If Statement that should update an unbound form with the information from another unbound form depending on what number is entered
but when i enter the number the field remains blank
please help
Code:
Private Sub Form_AfterUpdate() If Me.Text6 = 2 Then Me.Text11 = "Me.SAPR" Else Me.Text11 = "Now()" End If End Sub
please help
Comment