Patient ID (I assume the Combo box. Remember, two columns:
Row Source:
Assessment Date is unbound.
Double check to make sure the Form does note have a record Source.
Double check the name for the Command Button for Followup.
Make sure fsubAssessment has that name. make sure it has the proper Record Source (qryAssessments ). Make sure qryAssessments has been updated to reflect your index changes:
Troubleshooting can be frustrating with MS Access, but you must learn to look at everything. When one things changes, it may affect many other things.....
Row Source:
Code:
SELECT tbl_Admissions.AdmissionKey, tbl_Admissions.PatientID FROM tbl_Admissions ORDER BY tbl_Admissions.PatientID;
Double check to make sure the Form does note have a record Source.
Double check the name for the Command Button for Followup.
Make sure fsubAssessment has that name. make sure it has the proper Record Source (qryAssessments ). Make sure qryAssessments has been updated to reflect your index changes:
Code:
SELECT tbl_HoNOS_Assessments.PatientID, tbl_HoNOS_Assessments.AssessmentDate, tbl_HoNOS_Items.ItemKey, tbl_HoNOS_Items.ItemNumber, tbl_HoNOS_Assessments.ItemName, tbl_HoNOS_Assessments.AssessmentRating FROM tbl_HoNOS_Items INNER JOIN tbl_HoNOS_Assessments ON tbl_HoNOS_Items.ItemKey = tbl_HoNOS_Assessments.ItemName ORDER BY tbl_HoNOS_Assessments.PatientID, tbl_HoNOS_Assessments.AssessmentDate, tbl_HoNOS_Items.ItemKey;
Comment