J
Jabret
I am trying to create a report that has teacher class schedules periods 0-6.
Where there is no record of a class, I want a blank to appear in the
teacher's shedule. There are two semesters so I did a crosstab to get the
class name to appear under each term; however, I cannot get periods 0-6 to
show up for each teacher. Here is the latest attempt:
TRANSFORM First([extract-2].courseInfocourseName) AS
FirstOfcourseInfocourseName
SELECT [extract-2].sectionInfoteacherDisplay, Periods.Period,
[extract-2].courseInfodepartmentName, [extract-2].sectionScheduleperiodStart
FROM Periods LEFT JOIN [extract-2] ON Periods.Period =
[extract-2].sectionScheduleperiodStart
GROUP BY [extract-2].sectionInfoteacherDisplay, Periods.Period,
[extract-2].courseInfodepartmentName, [extract-2].sectionScheduleperiodStart
PIVOT Periods.Term;
Please help...Thanks!
Where there is no record of a class, I want a blank to appear in the
teacher's shedule. There are two semesters so I did a crosstab to get the
class name to appear under each term; however, I cannot get periods 0-6 to
show up for each teacher. Here is the latest attempt:
TRANSFORM First([extract-2].courseInfocourseName) AS
FirstOfcourseInfocourseName
SELECT [extract-2].sectionInfoteacherDisplay, Periods.Period,
[extract-2].courseInfodepartmentName, [extract-2].sectionScheduleperiodStart
FROM Periods LEFT JOIN [extract-2] ON Periods.Period =
[extract-2].sectionScheduleperiodStart
GROUP BY [extract-2].sectionInfoteacherDisplay, Periods.Period,
[extract-2].courseInfodepartmentName, [extract-2].sectionScheduleperiodStart
PIVOT Periods.Term;
Please help...Thanks!