I am trying to determine if I can create a select query that will produce the following data for a report. I would like a report/query that is organized as follows:
<Grade/SubjectName> <Sum of Teacher FTE> <Sum of Enroll> (by school_id)
Report would like like this.
It seems to me I should be able to create this using iif statements or case statements.
Here is my table structure. Thanks so much....Patti
<Grade/SubjectName> <Sum of Teacher FTE> <Sum of Enroll> (by school_id)
Report would like like this.
Code:
Grade School A School B 1 4 100 5 125 2 ………
Here is my table structure. Thanks so much....Patti
Code:
[B]Table = GradeLevels[/B] [I]FieldName; Type; Index[/I] grade_subjectName Text grade_subjectID; Long Integer; PK displayorder; Text level_school; Text staffingDivisor; Single internal_notes; Text glnotes; Text staffing_add; Long Integer
Code:
[B]Table = Schools[/B] [I]FieldName; Type; Index[/I] schoollName; Text school_id; Long Integer PK principal; Text Type; Text sixth_grade_enrol; Long Integer
Code:
[B]Table = TeacherResources[/B] [I]FieldName; Type; Index[/I] TeacherFTE; Double trschool_id; Long Integer; PK grade_subjectid; Long Integer; PK tryear; Text; PK Student_enroll; Double Displayorder; Text Notes; Text
Comment