This COMPUTE statement begins a compute block that produces a customized
summary at the end of the report. The LINE statement places the quoted text
and the value of Sales.sum (with the DOLLAR9.2 format) in the summary. An
ENDCOMP statement must end the compute block.
compute after;
line 'Total sales for these stores were: '
sales.sum dollar9.2;
endcomp;