Davidwazza
Programmer
Hi Everyone and Anyone!
My problem: I need to make an update query to place scores from Course Reports, to Individual Student Tables.
These are my tables...
Phew! Sorry people! Just best to give everyone all the information. Anywayz, you may have guessed, I want to make an Update Query to transfer the grades from the Course, into the Students Grades.
I tried, in qupdStudentAcademic, to update tblStudentAcademic, to set
but it said it was a conversion failure.
Obviously, I did a similar approach to strGrade, and dtmDate from tblCourseGrade and tblCourse respectively.
Anyone got any ideas? Greatly Appreciated!
My problem: I need to make an update query to place scores from Course Reports, to Individual Student Tables.
These are my tables...
Code:
tblStudent
Stores all of the Student details.
strStudentID
strSurname
...etc
tblStudentAcademic
Stores all of Students' Subject Scores (compulsory).
strStudentID
intMath
Percentage in Subject Maths
strMath
Grade -> D, C, P, F
dtmMath
Date Completed
...etc
tblCourse
Teachers use this to fill in details of their course.
intCourseID
strSubject
Choose from list, eg. Math
dtmDate
Date completed course.
...etc
tblCourseGrade
Subform which goes with tblCourse.
intCourseID
strStudentID
intPercentage
Percentage attained for course.
strGrade
Thus grade received eg. D, C, P, F.
Phew! Sorry people! Just best to give everyone all the information. Anywayz, you may have guessed, I want to make an Update Query to transfer the grades from the Course, into the Students Grades.
I tried, in qupdStudentAcademic, to update tblStudentAcademic, to set
Code:
Field: intPercentage
Table: tblCourseGrade
Update To: "int" & "[Tables]![tblCourse]![strSubject]"
Obviously, I did a similar approach to strGrade, and dtmDate from tblCourseGrade and tblCourse respectively.
Anyone got any ideas? Greatly Appreciated!