Focal Point
[SOLVED] change field description when using the ON command

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

March 13, 2012, 04:10 PM
DaveZ
[SOLVED] change field description when using the ON command
I want to do subtotals on department but instead of displaying the dept number
the user would like to see the department description.

ON DEPARTMENT_X SUBTOTAL AS ?????

This message has been edited. Last edited by: Kerry,


WebFOCUS 7.7.1
Windows 2000
Output: Excel and PDF
March 13, 2012, 04:26 PM
Danny-SRL
Dave,

Try this:
  
-* File DaveZ01.fex
DEFINE FILE CAR
SEATER/A6=DECODE SEATS(2 SPORT 4 FAMILY 5 WAGON);
END
TABLE FILE CAR
SUM SALES 
BY SEATS
BY SEATER NOPRINT
BY CAR
ON SEATER SUBTOTAL AS SEATS
ON TABLE NOTOTAL
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
 INCLUDE=ENDEFLT,
$
ENDSTYLE
END



Daniel
In Focus since 1982
wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF

March 13, 2012, 05:07 PM
DaveZ
You are saying I need to code for all 200 + departments


WebFOCUS 7.7.1
Windows 2000
Output: Excel and PDF
March 13, 2012, 05:30 PM
Waz
The other option is to use SUBFOOT.
ON DEP_CODE SUBFOOT
"<DEP_DESC <ST.Field1 <ST.Field2 <ST.Field3"  


You will need to do styling to position the items in the footing


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

March 13, 2012, 05:41 PM
Danny-SRL
Dave,
quote:
You are saying I need to code for all 200 + departments

I did a DECODE because in the CAR file there is no "description" for SEATS...

You probably have a field for the department name. Use that!


Daniel
In Focus since 1982
wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF

March 16, 2012, 04:58 PM
DaveZ
Thanks for all the help


WebFOCUS 7.7.1
Windows 2000
Output: Excel and PDF