Adding quarterly daily attendance to Object report

jenhin
Journeyman

Adding quarterly daily attendance to Object report

I need to add a table to our report card that will show attendance and tardies per quarter with a YTD total at the end.  Does anyone have the code for this already built?

2 Replies
ItsOnlyDoug
PowerSchool Mentor
PowerSchool Mentor

We have an attendance letter that lists the Current Days, the students attendance and their percentage of attendance.  I pull this using: 

  1. <b>Total Days of School</b>: ^(*DM;9/7/21;^(f.currentdate);format=###.0)
  2. <b>Total Absences</b>: ^(*evaluate round(^(*DABS),2))
  3. <b>Current Attendance:</b> ^(*evaluateround((^(*DA;9/7/21;^(f.currentdate))/^(*DM;9/7/21;^(f.currentdate))*100),2)) %

Line 1 shows the total days of membership.

Line 2 has the current Daily Absences

Line 3 takes the total abs divides it by the membership, multiplies that by 100 to get the percentage of days in attendance.

 

You could adjust the dates to reflect the dates you are looking to show on the report card.



Doug Skinner

District Instructional Data Officer
Gateway Regional School District



Did your issue get solved? Please remember to give Kudos and/or select Accept As Solution on the helpful posts to thank the author and to help others find the solution.


jenhin
Journeyman

Thanks!  This will get me started.