icemonster
Registered User.
- Local time
- Today, 05:43
- Joined
- Jan 30, 2010
- Messages
- 502
Code:
If Not IsNull(Me.lst3month.Column(0)) Then
DoCmd.OpenForm "frmReviewDetails3MONTHS", , , "EMPLOYEEREVIEWID = " & Me.lst3month
Else
DoCmd.OpenForm "frmReviewDetails3MONTHS", , , "EMPLOYEEID = " & Me.lst3month
End If
End Sub
keeps giving me a missing operator on the "DoCmd.OpenForm "frmReviewDetails3MONTHS", , , "EMPLOYEEREVIEWID = " & Me.lst3month" line.
all i want is to open a record using a filter if the listbox row 0 is null, am i doing this right at all?