About
Pricing
Community
Teams
Start Free Trial
Log in
CptPicard
asked on
12/30/2013
Run time error Access 2010
When I put the below in my forms Current event
----------------
If DLookup("TickBox","table2"
, "ContactID = " & Me.ContactID) = True Then
Me.lblComplete.Visible = True
Me.Image.Visible = True
Else
Me.lblComplete.Visible = False
Me.Image.Visible = False
End If
--------------
I get the following error message when I try adding a new record because the 'ContactID' field is empty. Can anyone advice?
-------------------
Run-time error '3075':
Syntax error (missing operator) in query expression 'ContactID = '.
------------------
Microsoft Access
2
1
Last Comment
DatabaseMX (Joe Anderson - Former Microsoft Access MVP)
8/22/2022 - Mon
ASKER CERTIFIED SOLUTION
Scott McDaniel (EE MVE )
12/30/2013
THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
DatabaseMX (Joe Anderson - Former Microsoft Access MVP)
12/30/2013
or
If DLookup("TickBox","table2"
, "ContactID = " &
Nz
(Me.ContactID,0) ) = True Then
Me.lblComplete.Visible = True
Me.Image.Visible = True
Else
Me.lblComplete.Visible = False
Me.Image.Visible = False
End If
I started with Experts Exchange in 2004 and it's been a mainstay of my professional computing life since. It helped me launch a career as a programmer / Oracle data analyst
William Peck
If DLookup("TickBox","table2"
Me.lblComplete.Visible = True
Me.Image.Visible = True
Else
Me.lblComplete.Visible = False
Me.Image.Visible = False
End If