As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.
Join the TIBCO Community TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.
From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
Request access to the private WebFOCUS User Group (login required) to network with fellow members.
Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.
I need to suppress the total in an accordian report on a specific column. I can fake the system by making the font color tha same as the background color but if I export the report to Excel the total is there. In the sample below I would like to completely suppress by setting a Blank or 0 instead of the Totals that I styled as WHITE. Has anyone developed a way to suppress a SUBTOTAL without resorting to color changes?
SET EXPANDBYROW = ON
TABLE FILE CAR
SUM
CAR.BODY.DEALER_COST
CAR.BODY.RETAIL_COST
BY LOWEST CAR.ORIGIN.COUNTRY
BY LOWEST CAR.COMP.CAR
BY LOWEST CAR.CARREC.MODEL
ON CAR SUBTOTAL
ON COUNTRY SUBTOTAL
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE SET EXPANDABLE ON
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = endeflt,$
TYPE=SUBTOTAL, BY =2, COLUMN=N4, COLOR='WHITE',$
ENDSTYLE
END
This message has been edited. Last edited by: Alex,
WF 7.7.04, WF 8.0.7, Win7, Win8, Linux, UNIX, Excel, PDF
Posts: 175 | Location: Pomona, NY | Registered: August 06, 2003
My problem is not creating the subtotal it is to selectively suppress it say on the RETAIL_COST column by retain it on the DEALER_COST column. The only way I have found to do it is by making the color of the font the same as the background. That's OK for HTML but doesn't work for EXCEL.
WF 7.7.04, WF 8.0.7, Win7, Win8, Linux, UNIX, Excel, PDF
Posts: 175 | Location: Pomona, NY | Registered: August 06, 2003
Sorry about that - I thought you could specify the columns to be subtotalled, but it does not work - all columns mentioned in the SUBTOTAL are visible - this is a non-AHTML example - both RETAIL_COST and WEIGHT are subtotalled on all subtotal rows:
TABLE FILE CAR
SUM
DEALER_COST
RETAIL_COST
WEIGHT
LENGTH
HEIGHT
BY LOWEST COUNTRY
BY LOWEST CAR
BY LOWEST MODEL
ON CAR SUBTOTAL RETAIL_COST
ON COUNTRY SUBTOTAL WEIGHT
ON TABLE SET PAGE-NUM NOLEAD
-*ON TABLE SET EXPANDABLE ON
-*ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
ON TABLE SET STYLE *
INCLUDE = ENDEFLT,$
ENDSTYLE
END
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server