Focal Point
Override NOTOTAL

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

September 16, 2005, 08:55 PM
greencup
Override NOTOTAL
I have a report that uses COLUMN-TOTAL, however my company has a standard style sheet that includes the statment ON TABLE NOTOTAL.

Is there a statment I can add in my FEX that will allow table totals?
September 16, 2005, 09:16 PM
susannah
i dont think so. unless you can copy the style sheet and edit it; but you can cheat.
ON TABLE HOLD AS MYTAB
END
TABLE FILE CAR
SUM...calculate just your totals
ON TABLE HOLD AS MYTAB2
END
-RUN
-HTMLFORM BEGIN
!IBI.FIL.MYTAB;
!IBI.FIL.MYTAB1;
-HTMLFORM END
Do you work for Gallo?
September 16, 2005, 09:19 PM
Prarie
Sounds like you need a couple of Stylesheets to choose from. Can you Edit the Fex, comment out that style sheet and add one of your own...that does not have the NOTOTAL statement?
September 16, 2005, 09:21 PM
Prarie
Susannah, I was going to ask the same Gallo question.
September 16, 2005, 09:31 PM
greencup
Yes I work for Gallo, I'm an Associate Programmer Anaylst. And I'm new to WebFocus.

As far as my problem... the reports can be in PDF, Excel or CSV formats. The parameters for the reports are passed from a web page. So the FEX has to be flexible for the different formats.

susannah, I believe your solution is only for HTML?

I guess I'm going to use my own style sheet or include it in my FEX. Thanks for the help.