Categories
- All Categories
- 75 Oracle Analytics News
- 7 Oracle Analytics Videos
- 14K Oracle Analytics Forums
- 5.2K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 40 Oracle Analytics Trainings
- 59 Oracle Analytics Data Visualizations
- 2 Oracle Analytics Data Visualizations Challenge
- 3 Oracle Analytics Career
- 4 Oracle Analytics Industry
- Find Partners
- For Partners
Goals Analysis in OTBI
Hi,
I am trying to have count of people for submitted and not submitted goals using below calculation:
Submitted:
CASE WHEN ("Workforce Goals - Goal Status Overview Real Time"."- Goal Management Process"."Count of All Performance Goals"-"Workforce Goals - Goal Status Overview Real Time"."- Goal Management Process"."Count of Canceled Goals") >=1 THEN count( "Worker"."Person ID") END
Not Submitted:
CASE WHEN ("Workforce Goals - Goal Status Overview Real Time"."- Goal Management Process"."Count of All Performance Goals"-"Workforce Goals - Goal Status Overview Real Time"."- Goal Management Process"."Count of Canceled Goals") <1 THEN count( "Worker"."Person ID") END
The above formulae for Not Submitted is not returning any value.
Another way that i tried to calculate the Not Submitted count is below:
count(distinct "Worker"."Person ID") - CASE WHEN ("Workforce Goals - Goal Status Overview Real Time"."- Goal Management Process"."Count of All Performance Goals"-"Workforce Goals - Goal Status Overview Real Time"."- Goal Management Process"."Count of Canceled Goals") >=1 THEN count( "Worker"."Person ID") END
But even the above formulae is not returning any value.
Can anyone help me understand how to get the not submitted count?
Thanks,
Ruvina
Answers
-
Could you provide the physical SQL from the query log please?
0 -
0