I have the following IF Statement:
If submittedyet = -1 & rejectedyet = 0 Then
Me.txtHolder.Value = 4
DoCmd.OpenForm "frmAddPO", , , "[PO#]=" & Me.[cmbSelectPO], acFormReadOnly
End If
When the code executes, submittedyet = -1 and rejectedyet =-1. However the code executes the code in the if block. Why is this? Do I have the syntax incorrect.
Thanks,



