I have 3 tables:
BaseData
DataPt1
GradesToPts
The BaseData table contains details about students such as name, gender, etc.
The DataPt1 table contains sets of grades for each subject a student studies (e.g. A, B, C).
The GradesToPts table contains a set of numerical equivalents to those grades (e.g. A has numerical value 7, B has numerical value 6, etc). These numbers will be needed for some maths later.
I want to design a query that returns students' names together with the numerical values of their grades. So, for example, if a student has achieved grades A, B and C in their subjects, the query returns their names together with the numbers 7, 6 and 5.
How do I achieve this in the design view of a query?
Thanks for any help offered,
Matt
BaseData
DataPt1
GradesToPts
The BaseData table contains details about students such as name, gender, etc.
The DataPt1 table contains sets of grades for each subject a student studies (e.g. A, B, C).
The GradesToPts table contains a set of numerical equivalents to those grades (e.g. A has numerical value 7, B has numerical value 6, etc). These numbers will be needed for some maths later.
I want to design a query that returns students' names together with the numerical values of their grades. So, for example, if a student has achieved grades A, B and C in their subjects, the query returns their names together with the numbers 7, 6 and 5.
How do I achieve this in the design view of a query?
Thanks for any help offered,
Matt