Discussion:
dlookup
(too old to reply)
kevcar40
2013-08-11 18:50:52 UTC
Permalink
hi
i am trying to return the supervisor number forma table dpending o what calues are selected from two combo boxes on a form

i have wrote the code below which is run from and afterupdate event
the first half of the code runs fine when i add the AND the code crashes


Me.Text124.Value = DLookup("fldsupernumber", "TblAreas", "fldarea = [Cbo_team]" And "fldshift = [Cbo_shift]")

can anyone please help me resolve this problem

thanks

kevin
Bob Quintal
2013-08-11 19:31:54 UTC
Permalink
Post by kevcar40
hi
i am trying to return the supervisor number forma table dpending o
what calues are selected from two combo boxes on a form
i have wrote the code below which is run from and afterupdate
event the first half of the code runs fine when i add the AND the
code crashes
Me.Text124.Value = DLookup("fldsupernumber", "TblAreas", "fldarea
= [Cbo_team]" And "fldshift = [Cbo_shift]")
can anyone please help me resolve this problem
thanks
kevin
You have some extra quotes in the criteria in the dLookup.
Try "fldarea = [Cbo_team] And fldshift = [Cbo_shift]"
--
Bob Q.
PA is y I've altered my address.
kevcar40
2013-08-11 19:38:58 UTC
Permalink
hi i am trying to return the supervisor number forma table dpending o what calues are selected from two combo boxes on a form i have wrote the code below which is run from and afterupdate event the first half of the code runs fine when i add the AND the code crashes Me.Text124.Value = DLookup("fldsupernumber", "TblAreas", "fldarea = [Cbo_team]" And "fldshift = [Cbo_shift]") can anyone please help me resolve this problem thanks kevin
thanks works a treat

kevin

Loading...