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.
For more information, please refer to this announcement explaining best practices for getting answers to questions.
Need help calculating the percent different between two columns
Summary
Need help calculating the percent different between two columnsContent
We are creating a recruiter scorecard in OBI. I've used a CASE WHEN formula to enter in each recruiter's individual hiring goal:
CASE
WHEN "Requisition Recruiter"."Recruiter Name" = 'XX' THEN '18'
WHEN "Requisition Recruiter"."Recruiter Name" = 'XX' THEN '27'
WHEN "Requisition Recruiter"."Recruiter Name" = 'XX' THEN '18'
WHEN "Requisition Recruiter"."Recruiter Name" = 'XX' THEN '18'
ELSE 'Other'
END
We have another column that shows actual hire starts:
FILTER("Candidate Counts"."# Submissions" USING ("Submission Dates"."Hire Start Date" BETWEEN timestamp '2016-01-01 00:00:00' AND timestamp '2016-12-31 00:00:00'))
0