G
google3luo359
I have an update query as follows:
UPDATE AEP SET AEP.Grade = [Forms].[frmPass].cboStudNum.Column(2)
WHERE (((AEP.Grade) Is Null) AND
((AEP.StudNum)=[Forms]![frmPass]![cboStudNum]));
When I run it I get the following error:
Undefined function ' [Forms]![frmPass]![cboStudNum.Column(2)] ' in
expression.
cboStudNum is a combo with three columns.
Widths ares 1",0",0".
I need to take the value from the third column and throw it into table
AEP.
Any ideas how I can get this to work?
TIA Ric
UPDATE AEP SET AEP.Grade = [Forms].[frmPass].cboStudNum.Column(2)
WHERE (((AEP.Grade) Is Null) AND
((AEP.StudNum)=[Forms]![frmPass]![cboStudNum]));
When I run it I get the following error:
Undefined function ' [Forms]![frmPass]![cboStudNum.Column(2)] ' in
expression.
cboStudNum is a combo with three columns.
Widths ares 1",0",0".
I need to take the value from the third column and throw it into table
AEP.
Any ideas how I can get this to work?
TIA Ric