Hello,
I'm currently using CR 8.5 & have a report pulling from a Oracle 9.2 backend. The report indicates how many performance reviews are overdue in a given chosen period of time.
As the formula below indicates, we've broken out the numbers being returned, into groups under 30 days overdue, 30-60 days overdue, etc.
To have this info display in the correct order, I've had to add the alphabetical 'prefix' in my formula. The problem is that if no reviews are due in a particular grouping, I can end up with missing groupings such as the missing C grouping for example:
A - Overdue less than 30 days. 5
B - Overdue 30 - 60 days. 21
D - Overdue 90 - 120 days. 9
E - Overdue exceeding 120 days 13
.........................................................
if {VU_ALL_EMPS_REVIEW.DAYS_OVER_DUE} in 1 to 29 then "A - Overdue less than 30 days." else
if {VU_ALL_EMPS_REVIEW.DAYS_OVER_DUE} in 30 to 59 then "B - Overdue 30 - 60 days." else
if {VU_ALL_EMPS_REVIEW.DAYS_OVER_DUE} in 60 to 89 then "C - Overdue 60 - 90 days." else
if {VU_ALL_EMPS_REVIEW.DAYS_OVER_DUE} in 90 to 120 then "D - Overdue 90 - 120 days." else
if {VU_ALL_EMPS_REVIEW.DAYS_OVER_DUE} > 120 then "E - Overdue exceeding 120 days." else
"F - Other"
.........................................................
This missing C grouping confuses the client. An explanation doesn't work, even though they have MBAs.
How can I suppress the alphabetical prefix, or how else could I deal with this?
Thanks,
Q
I'm currently using CR 8.5 & have a report pulling from a Oracle 9.2 backend. The report indicates how many performance reviews are overdue in a given chosen period of time.
As the formula below indicates, we've broken out the numbers being returned, into groups under 30 days overdue, 30-60 days overdue, etc.
To have this info display in the correct order, I've had to add the alphabetical 'prefix' in my formula. The problem is that if no reviews are due in a particular grouping, I can end up with missing groupings such as the missing C grouping for example:
A - Overdue less than 30 days. 5
B - Overdue 30 - 60 days. 21
D - Overdue 90 - 120 days. 9
E - Overdue exceeding 120 days 13
.........................................................
if {VU_ALL_EMPS_REVIEW.DAYS_OVER_DUE} in 1 to 29 then "A - Overdue less than 30 days." else
if {VU_ALL_EMPS_REVIEW.DAYS_OVER_DUE} in 30 to 59 then "B - Overdue 30 - 60 days." else
if {VU_ALL_EMPS_REVIEW.DAYS_OVER_DUE} in 60 to 89 then "C - Overdue 60 - 90 days." else
if {VU_ALL_EMPS_REVIEW.DAYS_OVER_DUE} in 90 to 120 then "D - Overdue 90 - 120 days." else
if {VU_ALL_EMPS_REVIEW.DAYS_OVER_DUE} > 120 then "E - Overdue exceeding 120 days." else
"F - Other"
.........................................................
This missing C grouping confuses the client. An explanation doesn't work, even though they have MBAs.
How can I suppress the alphabetical prefix, or how else could I deal with this?
Thanks,
Q