You're almost there! Please answer a few more questions for access to the Applications content. Complete registration
Interested in joining? Complete your registration by providing Areas of Interest here. Register
Get Started with Redwood for Oracle Cloud HCM   Begin Now
To ensure that questions get required attention from community members and are NOT left unanswered, it’s important for the author to indicate (by selecting “Yes” or “No” when prompted) whether the question was answered. (newly added) Please note that it is also important to respond to EACH comment your question receives. Your Yes or No response ensures an accurate status for your question.

For more information, please refer to this announcement explaining best practices for getting answers to questions.

Need to get distribution curve to work when count is 0

edited Oct 18, 2024 9:30AM in Reporting and Analytics for HCM 4 comments

I am trying to create a distribution curve for performance ratings. It looks good when there is a count >0 for each rating but when there is a 0 count for Unsatisfactory, I drops it from the distribution. It is needed so the skew can be visualized. Here is what it looks like:

And here is the SQL:
SET VARIABLE PREFERRED_CURRENCY='User Preferred Currency 1';SELECT s_0, s_1, s_2 FROM (
SELECT UNSUPPRESSED
0 s_0,
CASE WHEN "Workforce Performance - Performance Rating Real Time"."- Rating Level"."Numeric Rating" =0 THEN '0' WHEN "Workforce Performance - Performance Rating Real Time"."- Rating Level"."Numeric Rating" =1 THEN '1 Unsatisfactory' WHEN "Workforce Performance - Performance Rating Real Time"."- Rating Level"."Numeric Rating" =2 THEN '2 Improvement Needed' WHEN "Workforce Performance - Performance Rating Real Time"."- Rating Level"."Numeric Rating" =3 THEN '3 Achieves' WHEN "Workforce Performance - Performance Rating Real Time"."- Rating Level"."Numeric Rating" =4 THEN '4 Exceeds' WHEN "Workforce Performance - Performance Rating Real Time"."- Rating Level"."Numeric Rating" =5 THEN '5 Exemplary'

Howdy, Stranger!

Log In

To view full details, sign in.

Register

Don't have an account? Click here to get started!