There is one crosstab for each employee. For some employees all the cells are populated whether with a zero or other figure. For some employees the detail cells are blank but the total lines at the bottom of the last group and in the last column are populated. I am using the formula below for the summarized field. In case the problem was a null I tried adding the //new parts below to see if there was any change but there wasn't.
Does anyone have any ideas about why the individual cells might be blank when the total fills in?
Thanks -
If {@ChargeCondition} = True
Then
if isnull({dch_MonthlyProduction;1.ChgAmt}) //new
Then 0 //new
Else {dch_MonthlyProduction;1.ChgAmt} //new
// {dch_MonthlyProduction;1.ChgAmt} //old
Else If {@AdjustmentCondition}
Then {@ConvertAdjustments}
Else If
{@The4GroupSplit} = "2Refer70"
Then
{@NetCollections} * .7
Else if {@The4GroupSplit} = "2Render30"
Then
{@NetCollections} * .3
Else {@NetCollections}
Does anyone have any ideas about why the individual cells might be blank when the total fills in?
Thanks -
If {@ChargeCondition} = True
Then
if isnull({dch_MonthlyProduction;1.ChgAmt}) //new
Then 0 //new
Else {dch_MonthlyProduction;1.ChgAmt} //new
// {dch_MonthlyProduction;1.ChgAmt} //old
Else If {@AdjustmentCondition}
Then {@ConvertAdjustments}
Else If
{@The4GroupSplit} = "2Refer70"
Then
{@NetCollections} * .7
Else if {@The4GroupSplit} = "2Render30"
Then
{@NetCollections} * .3
Else {@NetCollections}