Focal Point
Controlling the format of the Subfoot

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

May 17, 2004, 10:44 AM
<Viswa>
Controlling the format of the Subfoot
I am trying to format the subtotal.

Following is the code which i have written

TABLE FILE CAR
PRINT
CAR
MODEL
DEALER_COST
SEATS
BY COUNTRY
ON COUNTRY SUBFOOT
"Total <+0> <+0>M <+0> "
ON TABLE SET ONLINE-FMT PDF
END

I need a dollar symbol in the subtotal for dealer_cost.
Can anyone throw some light on this.

Thanks
Viswakanth
May 18, 2004, 07:02 PM
<Vipul>
I have the same problem when you put subtotal in subfoot. The solution I have used (easy but not right) is.

TABLE FILE CAR<br />PRINT<br />CAR<br />MODEL<br />DEALER_COST/P17.2CM<br />SEATS<br />BY COUNTRY<br />ON COUNTRY SUBFOOT<br />"Total <+0> <+0>$<ST.DEALER_COST <+0> "<br />ON TABLE SET ONLINE-FMT PDF<br />END
Vipul