Once you enter the scores for your credits and subcredits for all categories in your rating project, you must have the system total your scores. Totaling your scores does the following:
Once the system makes these calculations, it updates the upper right pane with the total data, as per the below image. In parentheses next to the total self-score and official score values, you can see the corresponding certification levels.
Note: The certification level displayed in parentheses (as shown in the image) is for your reference. The system does not automatically update the Certified Level field of the Rating Projects table with this value. The Certified Level field is designed for you to enter the value returned by the certifying agency.
When reviewing the Scoring reports and dashboards, you will find that some reports focus on the certification level that maps to your score, whereas other reports focus on the value of Certified Level.
When you define a certification standard, you choose one of the following scoring methods:
The system uses these calculations to score rating projects according to the above methods:
SELECT bl_id,project_name, cert_std, sum (self_score) AS ‘Total Self Score’
FROM gb_cert_scores
WHERE credit_type =’C’
GROUP BY bl_id, project_name, cert_std;
SELECT bl_id,project_name, cert_std, sum (cat_self_score) AS ‘Total Self Score’
FROM (SELECT bl_id, project_name, cert_std, cert_cat, sum (self_score)*weighting_factor AS ‘cat_self_score’
FROM gb_cert_scores, gb_cert_cat
WHERE credit_type =’C’
GROUP BY bl_id,project_name, cert_std, cert_cat)
GROUP BY bl_id,project_name, cert_std;
SELECT bl_id,project_name, cert_std, sum (cat_self_score) AS ‘Total Self Score’
FROM (SELECT bl_id,project_name, cert_std, cert_cat, (sum(self_score)/sum(maximum_score))*100*weighting_factor) AS ‘cat_self_score’
FROM gb_cert_scores, gb_cert_credits,gb_cert_cat
WHERE credit_type =’C’
GROUP BY bl_id,project_name, cert_std, cert_cat)
GROUP BY bl_id,project_name, cert_std;