The form I am working on at the moment is designed to allow a data entry person to add new questions for the assessment of some properties. I am trying to set up cascading combo boxes that force the user to specify a category of assessment ("Management " or "Building") , and then choose a section/question type from within the relevant category, before they can save a new record.
However, when the form loads, I receive the error "Enter Parameter Value: Me!cboMgtBldg".
The row source for cboAssessmentSe ction is the following query:
I've had the same problems in similar situations using this machine. Sort of an Access newbie... but all the posts I've seen on this sort of technique make it seem straightforward and easy, so either I've missed a critical step, or perhaps something is missing from the local copy of Access. Thanks for any help!
ETA: Sorry, I forgot--this is Access 2003, but the database window says "(Access 2000 file format)".
However, when the form loads, I receive the error "Enter Parameter Value: Me!cboMgtBldg".
The row source for cboAssessmentSe ction is the following query:
Code:
SELECT tblAssessmentTypes.AssessmentTypeIndex, tblAssessmentTypes.AssessmentTypeName FROM tblAssessmentTypes WHERE (((tblAssessmentTypes.AssessmentMgtBldgIndex)=[Me]![cboMgtBldg])) ORDER BY tblAssessmentTypes.AssessmentTypeOrder;
ETA: Sorry, I forgot--this is Access 2003, but the database window says "(Access 2000 file format)".
Comment