Focal Point
Subtotal and Total below text line

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/4271048331

April 01, 2005, 07:18 PM
<Tana>
Subtotal and Total below text line
How do you get the subtotal number on the subtotal text line.
April 01, 2005, 07:26 PM
Denver RSE
Tana,

What version and what product are you using?

Your code should look like this:

TABLE FILE CAR

SUM
DEALER_COST
BY
COUNTRY

ON PLANT SUBTOTAL AS 'Subtotal for:'

Actually, you will see *TOTAL instead of Subtotal For.

Also, depending on how wide the columns are, # of columns, etc, whether squeeze is on; it may be word wrapping on you as well.
April 01, 2005, 07:37 PM
GCohen
The sub-total is referenced by the syntax..
ST.FIELDNAME
eg
TABLE FILE CAR
SUM RCOST
BY COUNTRY BY CAR
ON COUNTRY SUBFOOT
"MY OWN TEXT COST IS <ST.RCOST "
END