Hi, sorry the earlier incomplete post. I accidently hit submit instead of preview.
I am using Crystal 10 and am having a problem with a crosstab. I am calculating capture rates on a daily then weekly basis in any given month. Capture rate is calls captured/calls handled. I have columns for each day's totals, then a weekly column after the 7th, 14th, 21st, and 28th day to sum up the week. Below is example of what the crosstab looks like and sample values.
My formulas are:
{@calls_captured}
if isnull({TABLE.CALLS_CAPTURED}) then
0
else
{TABLE.CALLS_CAPTURED}
{@calls_handled}
if isnull({TABLE.CALLS_HANDLED}) then
0
else
{TABLE.CALLS_HANDLED}
{@calls_handledDen}
if {@calls_handled} > 0 then
{@calls_handled}
else
0.0001 //denominator cannot be zero
{@capture_rate}
if ({@CallsHandled} > 0) and ({@CallsCaptured} > 0) then
{@CallsCaptured} % {@CallsHandled}
else
0
The capture rate is calculated in the crosstab this way: weighted avg of @capture_rate with @calls_handledDen.
The daily percentage come out perfect, but in the weekly capture rate%, the percentage is ignoring calls captured on days where calls handled is 0 and is returning the wrong percentage for the week. In the example below, the weekly % should be 94.12, but it's ignoring the 3 calls captured from April 5.
How can I correct this problem and make the crosstab show the correct weekly percentage in a case like this? Thanks!
[tab][tab][tab]April
[tab][tab][tab][tab][tab][tab][tab]1[tab][tab]2[tab][tab]3[tab][tab]4[tab][tab]5[tab][tab]6[tab][tab]7[tab][tab]Week
-----------------------------------------------------------------------------
Calls Handled[tab][tab]5[tab][tab]3[tab][tab]4[tab][tab]3[tab][tab]0[tab][tab]3[tab][tab]1[tab][tab]17
Calls Captured [tab]3[tab][tab]1[tab][tab]4[tab][tab]1[tab][tab]3[tab][tab]3[tab][tab]1[tab][tab]16
Capture Rate%[tab]60[tab] 25 [tab]100 [tab]25 [tab]0 [tab]100[tab] 100 [tab]76.47
I am using Crystal 10 and am having a problem with a crosstab. I am calculating capture rates on a daily then weekly basis in any given month. Capture rate is calls captured/calls handled. I have columns for each day's totals, then a weekly column after the 7th, 14th, 21st, and 28th day to sum up the week. Below is example of what the crosstab looks like and sample values.
My formulas are:
{@calls_captured}
if isnull({TABLE.CALLS_CAPTURED}) then
0
else
{TABLE.CALLS_CAPTURED}
{@calls_handled}
if isnull({TABLE.CALLS_HANDLED}) then
0
else
{TABLE.CALLS_HANDLED}
{@calls_handledDen}
if {@calls_handled} > 0 then
{@calls_handled}
else
0.0001 //denominator cannot be zero
{@capture_rate}
if ({@CallsHandled} > 0) and ({@CallsCaptured} > 0) then
{@CallsCaptured} % {@CallsHandled}
else
0
The capture rate is calculated in the crosstab this way: weighted avg of @capture_rate with @calls_handledDen.
The daily percentage come out perfect, but in the weekly capture rate%, the percentage is ignoring calls captured on days where calls handled is 0 and is returning the wrong percentage for the week. In the example below, the weekly % should be 94.12, but it's ignoring the 3 calls captured from April 5.
How can I correct this problem and make the crosstab show the correct weekly percentage in a case like this? Thanks!
[tab][tab][tab]April
[tab][tab][tab][tab][tab][tab][tab]1[tab][tab]2[tab][tab]3[tab][tab]4[tab][tab]5[tab][tab]6[tab][tab]7[tab][tab]Week
-----------------------------------------------------------------------------
Calls Handled[tab][tab]5[tab][tab]3[tab][tab]4[tab][tab]3[tab][tab]0[tab][tab]3[tab][tab]1[tab][tab]17
Calls Captured [tab]3[tab][tab]1[tab][tab]4[tab][tab]1[tab][tab]3[tab][tab]3[tab][tab]1[tab][tab]16
Capture Rate%[tab]60[tab] 25 [tab]100 [tab]25 [tab]0 [tab]100[tab] 100 [tab]76.47