Hi.
VFP's normal report structure implies that any group starts with header, where common characteristics are listed, detail band, and a footer, for totals and summaries. Where I live, though, accountants favor the different layout, where totals go first:
Is it possible to arrange a VFP report like this without compiling additional cursors with no other purpose than having group totals?
VFP's normal report structure implies that any group starts with header, where common characteristics are listed, detail band, and a footer, for totals and summaries. Where I live, though, accountants favor the different layout, where totals go first:
Code:
TOTAL: SUM(xyz)
of them, X: SUM(x)
of them: x1
x2
x3
of them, Y: SUM(y)
y1
y2
y3
of them, Z: SUM(z)
z1
z2
z3