First change {@days_worked} to:
if {S_CLKB_DECISIONS_BY_DAY;1.dec_cnt} > 0 then
{S_CLKB_DECISIONS_BY_DAY;1.dec_day} else
{@null}
...where {@null} is a new formula that you create by opening and saving a new formula without entering anything.
Remove the summary on {@avg_wrkd} from the crosstab. Then add a distinctcount of {@days_worked} as your second summary.
Next, in preview mode, select the first summary (sum of dec_cnt) for all row totals simultaneously and right click->format field->suppress->x+2 and enter:
whileprintingrecords;
numbervar sumx := currentfieldvalue;
false
Then select the second summary (dcnt of {@days_worked}->right click->format field->suppress->x+2 and enter:
whileprintingrecords;
numbervar cnt := currentfieldvalue;
false
In the same screen, go to display string->x+2 and enter:
whileprintingrecords;
numbervar sumx;
numbervar cnt;
if cnt = 0 then "0" else
totext(sumx/cnt,2)
Then suppress the inner cells for the days_worked summary.
-LB