Focal Point
Subtotal formating

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

September 05, 2007, 03:12 PM
Madhu
Subtotal formating
Hi,

Is it possible to format the subtotal when using ON TABLE SUBTOTAL. I want the total color to be in blue. I checked the forum but could not find anything that will help me out.


SET SUMMARYLINES=NEW
TABLE FILE CAR
PRINT
SALES
BY CAR
ON TABLE SUBTOTAL AVE. SALES
ON TABLE SET ONLINE-FMT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
UNITS=IN,
PAGESIZE='SCREEN',
LEFTMARGIN=0.000000,
RIGHTMARGIN=0.000000,
TOPMARGIN=0.000000,
BOTTOMMARGIN=0.000000,
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
GRID=OFF,
FONT='TIMES NEW ROMAN',
SIZE=10,
COLOR='BLACK',
BACKCOLOR='NONE',
STYLE=NORMAL,
RIGHTGAP=0.125000,
$
TYPE=DATA,
COLUMN=N2,
COLOR='RED',
WHEN=N2 GE 40000,
$
TYPE=SUBTOTAL,
COLUMN=N2,
COLOR=BLUE,
BORDER-TOP=LIGHT,
BORDER-BOTTOM=LIGHT,
BORDER-LEFT=OFF,
BORDER-RIGHT=LIGHT,
BORDER-COLOR='BLACK',
$
ENDSTYLE
END


Thank you


Madhu

WF Version 7.1 Windows, SQL Server Database
September 05, 2007, 03:34 PM
Prarie
The way you are doing this it would be the GRANDTOTAL


In Focus since 1993. WebFOCUS 7.7.03 Win 2003
I am trying to do an Average


Madhu

WF Version 7.1 Windows, SQL Server Database
Change TYPE=SUBTOTAL To TYPE=GRANDTOTAL,
and it will turn the amount blue.


In Focus since 1993. WebFOCUS 7.7.03 Win 2003
Thank you, It works great


Madhu

WF Version 7.1 Windows, SQL Server Database