I have a field, Grad Term, that is set up with the Year/Semester: 201330 (spring), 201350 (summer), and 201370 Fall
I have a query that pulls the information i need into a report (student, total etc) by term
SELECT tblStudentInformation.[790ID], [LastName] & ", " & [FirstName] AS Name, tblStudentInformation.DegreeType, tblStudentInformation.Status, tblStudentInformation.CPHGraduateTerm
FROM tblStudentInformation
WHERE (((tblStudentInformation.DegreeType)="CPH") AND ((tblStudentInformation.Status)="Graduated"));
Is it possible to make a query that will take the year "2013" and add the three terms together under the year?
I have a query that pulls the information i need into a report (student, total etc) by term
SELECT tblStudentInformation.[790ID], [LastName] & ", " & [FirstName] AS Name, tblStudentInformation.DegreeType, tblStudentInformation.Status, tblStudentInformation.CPHGraduateTerm
FROM tblStudentInformation
WHERE (((tblStudentInformation.DegreeType)="CPH") AND ((tblStudentInformation.Status)="Graduated"));
Is it possible to make a query that will take the year "2013" and add the three terms together under the year?