psycoperl
Active Member
- Joined
- Oct 23, 2007
- Messages
- 339
- Office Version
- 365
- 2016
- Platform
- Windows
- MacOS
- Web
I am working on a project that will track what test(s) a student needs and assign them the status appropriate code.
I currently have 2 tables & 3 queries in my database
(tblStudent, tblATBCode, qryMaxMath, qryMaxReading, qryMaxWriting)
For Each Student in tblStudent (by tblStudent.StudentID) i need to determine the correct tblATBCode.ATBTestCode based on the students records where the Met value is either "Y" or "N"
tblATBCode.MetMA = qryMaxMath.MaMet
tblATBCode.MetRA = qryMaxReading.ReadingMet
tblATBCode.MetWO = qryMaxWriting.WoMet
(If there is no test record in a querys treat as if it was a "N")
I can't figure out where to start on this code. I am thinking that a query could do this but not sure. Any help you can provide will be great.
I currently have 2 tables & 3 queries in my database
(tblStudent, tblATBCode, qryMaxMath, qryMaxReading, qryMaxWriting)
For Each Student in tblStudent (by tblStudent.StudentID) i need to determine the correct tblATBCode.ATBTestCode based on the students records where the Met value is either "Y" or "N"
tblATBCode.MetMA = qryMaxMath.MaMet
tblATBCode.MetRA = qryMaxReading.ReadingMet
tblATBCode.MetWO = qryMaxWriting.WoMet
(If there is no test record in a querys treat as if it was a "N")
I can't figure out where to start on this code. I am thinking that a query could do this but not sure. Any help you can provide will be great.