I am trying to open a second form if the correct values are in the “department” and “Audit Type” fields on the first form with the following code:
Private Sub Audit_Type_AfterUpdate()
If “Department = BND” And “Audit Type = First Piece” Then
DoCmd.OpenForm “frmEnterBNDFirstPieceStatus”, acNormal
Else
End If
End Sub
Can’t get this to work. Any help?