Presentation is loading. Please wait.

Presentation is loading. Please wait.

Copyright © 2006, Infinite Campus, Inc. All rights reserved. Ad Hoc Reporting.

Similar presentations


Presentation on theme: "Copyright © 2006, Infinite Campus, Inc. All rights reserved. Ad Hoc Reporting."— Presentation transcript:

1 Copyright © 2006, Infinite Campus, Inc. All rights reserved. Ad Hoc Reporting

2 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Agenda 1. Objectives 2. Ad Hoc Reporting 3. Tips and Tricks 4. Finding Information

3 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Objectives 1.Learn about the three types of filters that can be created in Filter Designer and how to choose the best one for a given task 2.Understand the data types available and how filter options can assist you in searching for information 3.Learn how to design a Custom Form Letter, containing Data Elements, in the Report Designer 4.Combine an Ad Hoc filter and a Custom Form Letter in Report Builder 5.Learn what the Data Export tool is used for

4 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Ad Hoc Reporting Module The Ad Hoc Reporting Module has five parts. We will review the first four. (Cube Designer is an advanced feature that is discussed in another session.) The Filter Designer is used to select data from Campus The Report Designer is used to create custom reports (form letters) The Report Builder allows you to join Filters with Reports The Data Export Tool is used to export data from saved Filters

5 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Filter Designer The Filter Designer provides three ways to filter data  Query Wizard  Selection Editor  Pass-through SQL Query There are three types of data from which the user can select  Student  Census/Staff (person)  Course/Section (curriculum)

6 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Filter Designer – Query Wizard The Query Wizard allows a user to generate dynamic custom searches on any of the three data types.

7 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Query Wizard Fields The Query Name should be descriptive. Select all of the fields that will be used as filter criteria or that you would like displayed on the output. Fields in the blue list on the left expand, making thousands of possible filter combinations.

8 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Finding your Fields TO FIND:LOOK IN: Transcript informationLearner Portfolio > Transcript Detail Student enrollment and schedules Learner > Schedule Medical flagsLearner > Programs Special Ed status Learner > Active Enrollment > Special Ed elements OR Learner > Enrollment History > Special Ed elements Person GUID or Guardian information Census > Contact Summary

9 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Query Wizard Filter Options The Query Wizard uses of Filter Options to narrow your search: Equal or Not Equal (=, <>) IN, NOT IN LIKE SOUNDS LIKE IS NULL, IS NOT NULL For numeric values: >, >=, <, <= For dates: IS TODAY, IS YESTERDAY Use the Organized To field to save the filter for your own use or share it with other User Groups you belong to. Use the Help tab while in the Wizard for a description of each option.

10 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Filter Option Examples 1. Filter students in grade 9 or 12 IN – using commas (no space) student.grade IN 09,12 2. Filter on students with a last name that Sounds Like - as. (Filter could return az, as, aas) student.lastName SOUNDS LIKE as 3. Find students that do not have certain information entered into Campus. (i.e. birthdates, race ethnicity, middle name ) Is Null student.birthdate IS NULL 4. Find people who have unwanted information entered into Campus. Is Not Null student.ssn IS NOT NULL

11 Copyright © 2007, Infinite Campus, Inc. All rights reserved. The LIKE Option Uses Wildcards % matches a string of zero or more characters student.lastNameLIKEMc% will find all names that begins with “Mc” student.lastNameLIKE%en% will find all names that includes the letters “en” (Bennet, Green, McBadden) _ matches one character student.lastNameLIKEAnders_n will find “Anderson” and “Andersen” but not “Andersohn” [ ] matches each single character enclosed in the brackets student.lastNameLIKE[ABCD]% will find every name beginning with A, B, C or D student.lastNameLIKE[CKL]ars[eo]n will find “Carsen”, “Karsen”, “Larsen”, “Carson”, “Karson” and “Larson” ^ when used with square brackets, it means NOT student.lastNameLIKEM[^c]% will find all names beginning with M that do not have c as the second letter

12 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Query Wizard Output Output can be pasted into a spreadsheet for further manipulation or printed as is. Click on the Test button to see the results of your Query:

13 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Filter Designer – Selection Editor The Selection Editor creates a static list of individually selected Students.

14 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Selection Editor Students are chosen from a list of all students in the selected Calendar. Since the list is static, any changes must be made manually.

15 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Filter Designer – Pass-through SQL Query To use this filter type you need knowledge of the Campus database schema and SQL, a database programming language. This is covered in another session.

16 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Report Designer Report Designer allows districts to create their own custom reports or letters using a WYSIWYG editor. Once the reports have been saved, users can use the Report Builder to generate the printed version of the report.

17 Copyright © 2007, Infinite Campus, Inc. All rights reserved. A Custom Report Type the layout of the report in the text field, adding Campus Fields and Sub-Reports where needed. Letters can be shared with other users by choosing a group in Organized To.

18 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Report Builder Filters and Reports are joined together in the Report Builder. If you wish to use more than one Filter, you can choose Union or Intersection in the Set Operation field. X X X X X X X X X X X X X X X X X X X X X X X X X X Union (all Dodgeball Team members and all 10th grade boys) Intersection (Dodgeball Team members who are also 10th grade boys)

19 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Building a Report The Campus Fields will populate with the desired information. The letters can then be printed and distributed.

20 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Data Export The Data Export tool is used to export data from filters that were created with the Query Wizard in several formats.  HTML opens a browser pop-up window  XML is a Web language used by computer programs  Comma Separated Values and Tab delimited Values can be used in a program such as Excel  PDF report can be saved and printed, but not edited

21 Copyright © 2007, Infinite Campus, Inc. All rights reserved. More Uses for Ad Hoc Filters Mailing Labels Census > Reports > Mailing Labels Ad Hoc Filter dropdown list will contain all your saved filters Other reports Similar to Mailing Labels Advanced Search Search tab Search for a Student Advanced Search >> Select a Saved Filter from the list and click the Search button

22 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Tips In Query Wizard, deselect a Filter Option when you remove a criteria from the right hand box Active students student.activeToday = 1 (check box or Y/N values are recorded as 1 or 0) Certain fields are stored as code numbers rather than descriptions. Look at Campus dropdown lists to determine how to search for your desired results. Example: for non-White students, student.raceEthnicity <> 5

23 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Activities – Attendance Create a Daily Approximation filter to find all students who are absent today. Try yesterday too. Filter on Ethnicity as well Decide on the type of Demographic, Attendance, and Date filters to use.

24 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Activities – Attendance Hints  Fields from Demographics: firstName, lastName.  Fields from Attendance>Daily Approx Detail: Date.  Filter on date IS YESTERDAY/IS TODAY.

25 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Activities – Attendance Create a filter that pulls 10 th and 11 th grade students with 15 or more period absences and 10 or more course absences. Hint  Students should be Active

26 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Activities – Grades Students with Ds & Fs this Term:  Student > Demographics student.lastName LIKE [ABCDEFG]% student.firstName student.middleName student.grade = 09 (whatever grade level you choose)

27 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Activities – Grades Students with Ds & Fs this Term – Cont:  Student > Grading grading.courseNumber grading.courseName grading.sectionNumber grading.teacherDisplayname grading.termName grading.task grading.score IN D-,D,D+,F

28 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Activities – Grades Find grade 10 female students whose last names begin with letters between F and M who took courses whose names begin with Wo or We who have a Term 2 GPA of 4.0. Hint –  The name ranges require wildcard entries  L[ae]% finds names that start with La or Le  LIKE [ABCDEFG]% Between A and G

29 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Extra Activity Create a filter that pulls absences for students < 16 years. Hint –  Students over 16 not needed

30 Copyright © 2007, Infinite Campus, Inc. All rights reserved. Questions 1. How would you design a filter in the Query Wizard that will allow us to search or build a report for all ethnic minorities? 2. How would you build the list of students in debate? 3. Name one way you could benefit from using the Ad Hoc Report module.


Download ppt "Copyright © 2006, Infinite Campus, Inc. All rights reserved. Ad Hoc Reporting."

Similar presentations


Ads by Google