Object Required Error MS Access SQL -
i'm stuck in sql statement in vba coding. i'm trying complete update query dlookup may not have written code correctly. want workerid
, workername
come dlookup userid used data here getnextassignee("program", "language", "username")
. i'm getting object required error here:
"update cfrrr,attendance set assignedto = " & getnextassignee("program", "language", "username") & ", assignedby = " & forms!supervisor!navigationsubform!assignedby.value & ", dateassigned = #" & & "#, actiondate = #" & & "#, workername = " & dlookup(attendance.username, "attendance", "username = userid") & ", workerid = " & dlookup(attendance.userid, "attendance", "workerid = userid") & " cfrrrid = " & rs!cfrrrid
here's full code context:
set db = currentdb strsql = "select cfrrrid, [program], [language] cfrrr assignedto null" set rs = db.openrecordset(strsql, dbopendynaset) if not rs.bof , not rs.eof while not rs.eof strsql = "update cfrrr,attendance set assignedto = " & getnextassignee("program", "language", "username") & ", assignedby = " & forms!supervisor!navigationsubform!assignedby.value & ", dateassigned = #" & & "#, actiondate = #" & & "#, workername = " & _ dlookup(attendance.username, "attendance", "username = userid") & ", workerid = " & dlookup(attendance.userid, "attendance", "workerid = userid") & " cfrrrid = " & rs!cfrrrid debug.print strsql db.execute strsql, dbfailonerror rs.movenext wend end if
thank you!
your dlookup expressions not correct. target field of dlookup string-expression well. should be:
... & dlookup("username", "attendance", "username = userid") & ...
there multiple occurances of error in sql.
in addition that, should check criteria expression well:
..."username = userid"...
that looks suspicious me. can't tell if correct or not without knowing table , data structure.
Comments
Post a Comment