Small problem that I though would be straight forward, but sods law kicked in and Im at a loss
What Ive got is a main form that has 13 buttons that open up another form for entry/edits, what I want to do is indicate via a checkbox on the main form if there is already a record and thought this would suffice
Keeps telling me that "cant find the field "|" in your expression", any thoughts?
What Ive got is a main form that has 13 buttons that open up another form for entry/edits, what I want to do is indicate via a checkbox on the main form if there is already a record and thought this would suffice
Code:
Private Sub Form_Open(Cancel As Integer)
If IsNull(DLookup([tblSect1]![RevID], tblSect1, [tblSect1]![RevID] = [ID])) Then
Check15.Value = False
Else
Check15.Value = True
End If
End Sub
Keeps telling me that "cant find the field "|" in your expression", any thoughts?