08.03.2014 Views

Grade Scales - Help Desk

Grade Scales - Help Desk

Grade Scales - Help Desk

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

<strong>Grade</strong>s User Guide<br />

Functions<br />

Formulas consist of functions and arguments, in most cases. Functions are used to perform<br />

operations on values, such as calculating a sum or an average, including a grade point<br />

average (GPA).<br />

There are five categories of functions:<br />

• Numerical functions: Such as rounded, truncated by specified number of places<br />

• Logical functions: Such as "if," "and," "or"<br />

• Statistical functions: Such as average, max, min, median, product, sum<br />

• Text functions: Such as ASCII characters, uppercase, repeat text by specified<br />

number of times<br />

• GPA functions: Such as number of grades counted in GPA, course numbers, GPA<br />

calculation<br />

Functions must always include the parentheses, even if no arguments are specified. When<br />

specifying arguments to functions, be sure to enclose text values in quotation marks.<br />

GPA Samples<br />

Sample GPA formulas are listed below to illustrate the options available.<br />

PowerSchool's traditional cumulative weighted GPA, rounded to 3 decimal places:<br />

round((gpa_sum(gpa_gpapoints()*gpa_potentialcredit()/sum(gpa_potentialcredit()),3)<br />

PowerSchool's traditional cumulative simple GPA, truncated to 2 decimal places:<br />

trunc((average(gpa_gpapoints()),2)<br />

A value added GPA:<br />

average(gpa_gpapoints())+sum(gpa_addedvalue())<br />

The number of A grades received:<br />

countof(A,gpa_grade())+countof(A+,gpa_grade())+countof(A-,gpa_grade())<br />

Total of all earned credit:<br />

sum(gpa_earnedcredit())<br />

The text "You are a star student!" if the student received more than 3 A+ grades:<br />

if(countof(A+,gpa_grade())>=3,You are a star student!,)<br />

The list of all letter grades, GPA points, and potential credit values used by the calculation:<br />

gpa_grade()&&gpa_gpapoints()&&gpa_potentialcredit()<br />

The result of one GPA calculation if the student has any grades with added value, or the<br />

result of another if not:<br />

if(sum(gpa_addedvalue())>0,gpa_calculation(honors),gpa_calculation(standard))<br />

Numerical Functions<br />

Functions are used to perform operations on values, such as rounding numbers to a<br />

specified number of digits. The functions in this category are listed alphabetically.<br />

<strong>Grade</strong>s 17

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!