I am using CR 10 with Oracle.
Data looks like this:
RPT_MONTH PRODUCT PERSIST_INT ACCT_PERSISTENCY
05/01/2007 Protect 0 7161
05/01/2007 Generic 0 5
05/01/2007 Protect 1 6306
05/01/2007 Generic 1 4
There are 2 formulas:
//{@persist interval}
if {TABLE.PERSIST_INT} = 0 then "."
else if
{TABLE.PERSIST_INT} > 0
and {TABLE.PERSIST_INT} < 36
then
"Int. " & totext({TABLE.PERSIST_INT},0)
else
"Int. 36+"
//{@Saved acct. persistency %}
numberVar x;
if {@Persist Interval}='.' then
x := {TABLE.ACCT_PERSISTENCY};
if {TABLE.ACCT_PERSISTENCY} % x=100 then 0
else
{TABLE.ACCT_PERSISTENCY} % x
The report has a grouping on {TABLE.PRODUCT}. A crosstab is built in the GF with {@persist interval} as the column, {TABLE.RPT_MONTH} as the row, and max({@Saved acct. persistency %}) as the summary.
The question the report is answering is: For each product, what % of Interval '.' is each subsequent Interval for each month?
Expected output in 1st crosstab is:
==================================
Protect
. Int. 1
05/01/2007 0 88.06
==================================
Actual output in 1st crosstab is:
==================================
Protect
. Int. 1
05/01/2007 0 126,120.00
==================================
The report is obviously deriving this calculation from the 2nd and 3rd records, rather than the 1st and 3rd
as I need it. I thought that since I have the crosstab in the {TABLE.PRODUCT} GF, the 2nd record would be ignored because it's a diffent product.
Is there a way to get the correct calculation in my crosstab?
Data looks like this:
RPT_MONTH PRODUCT PERSIST_INT ACCT_PERSISTENCY
05/01/2007 Protect 0 7161
05/01/2007 Generic 0 5
05/01/2007 Protect 1 6306
05/01/2007 Generic 1 4
There are 2 formulas:
//{@persist interval}
if {TABLE.PERSIST_INT} = 0 then "."
else if
{TABLE.PERSIST_INT} > 0
and {TABLE.PERSIST_INT} < 36
then
"Int. " & totext({TABLE.PERSIST_INT},0)
else
"Int. 36+"
//{@Saved acct. persistency %}
numberVar x;
if {@Persist Interval}='.' then
x := {TABLE.ACCT_PERSISTENCY};
if {TABLE.ACCT_PERSISTENCY} % x=100 then 0
else
{TABLE.ACCT_PERSISTENCY} % x
The report has a grouping on {TABLE.PRODUCT}. A crosstab is built in the GF with {@persist interval} as the column, {TABLE.RPT_MONTH} as the row, and max({@Saved acct. persistency %}) as the summary.
The question the report is answering is: For each product, what % of Interval '.' is each subsequent Interval for each month?
Expected output in 1st crosstab is:
==================================
Protect
. Int. 1
05/01/2007 0 88.06
==================================
Actual output in 1st crosstab is:
==================================
Protect
. Int. 1
05/01/2007 0 126,120.00
==================================
The report is obviously deriving this calculation from the 2nd and 3rd records, rather than the 1st and 3rd
as I need it. I thought that since I have the crosstab in the {TABLE.PRODUCT} GF, the 2nd record would be ignored because it's a diffent product.
Is there a way to get the correct calculation in my crosstab?