Employees with High Performance Rating

Ad Hoc Reporting Guide

Version
R2025.2.1
ft:lastEdition
2025-12-01
Employees with High Performance Rating

The Employees with High Performance Rating report uses the Performance Review topic to display a list of employees who scored equal to or above a specified percentage on their performance review. It contains details about employees and their manager ratings.

Fields

Fields included in the report template
Field Name Group by Sort Order Totals
Review Yes Ascending  
Rating PCT Yes Smallest to Largest  
Employee   A to Z  
Job Assignment   Ascending  
Location   Ascending  
Manager   A to Z  
Rating Value   A to Z  
Rating Name   A to Z  

Custom Fields

Rating PCT

The Rating PCT custom field displays the manager rating score in percentage. It uses the following expression:

CASE
    WHEN vEmployeeReviewCycleReport.ManagerRating IS NULL THEN 0.0
    ELSE CONVERT(Decimal(10, 2), vEmployeeReviewCycleReport.ManagerRating * 100.0 / vEmployeeReviewCycleReport.RatingScaleMaxValue)
END

Rating Value

The Rating Value custom field displays the manager rating value. It uses the following expression:

CASE
    WHEN vEmployeeReviewCycleReport.ManagerRating IS NULL THEN 'Not Rated'
    ELSE CONVERT(nvarchar(10), CONVERT(Decimal(10, 2), vEmployeeReviewCycleReport.ManagerRating))+' / '+CONVERT(nvarchar(10), CONVERT(Decimal(10, 2), vEmployeeReviewCycleReport.RatingScaleMaxValue))
END

Filters

The template includes the following filters:

Report filters.