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.
TABLE FILE CAR
SUM
RETAIL_COST AS 'RETAIL' OVER
DEALER_COST AS 'DEALER'
BY MODEL
ACROSS BODYTYPE
ON TABLE ROW-TOTAL
ON TABLE COLUMN-TOTAL
ON TABLE SET STYLE *
TYPE=TITLE, COLUMN=RETAIL_COST, COLOR=RED, $
TYPE=TITLE, COLUMN=DEALER_COST, COLOR=BLUE, $
TYPE=DATA, COLUMN=ROWTOTAL(1), COLOR=RED, $
TYPE=DATA, COLUMN=ROWTOTAL(2), COLOR=BLUE, $
ENDSTYLE
END
EDIT: added styling for row totals.This message has been edited. Last edited by: Dan Satchell,
WebFOCUS 7.7.05
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007
Looks like a bug to me. TYPE=GRANDTOTAL should include all text and values in the grand total rows. Below is a work-around. You could do the same with a single, multi-verb request, but then you would have the multi-line totals problem. You could probably also accomplish this with a FOOTING/TABFOOT/SUBFOOT, but that requires extra work.
SET HOLDLIST = PRINTONLY
-*
TABLEF FILE CAR
SUM
RETAIL_COST/D7
DEALER_COST/D7
ON TABLE SAVE AS TOTALS
END
-RUN
-READ TOTALS &TOT_RCOST.7. &TOT_DCOST.7.
-*
TABLE FILE CAR
SUM
RETAIL_COST AS 'RETAIL' OVER
DEALER_COST AS 'DEALER'
BY MODEL
ACROSS BODYTYPE
ON TABLE ROW-TOTAL
ON TABLE COLUMN-TOTAL
ON TABLE SET STYLE *
TYPE=TITLE, COLUMN=RETAIL_COST, BACKCOLOR=ORANGE, WHEN=ROWTOTAL(RETAIL_COST) EQ &TOT_RCOST, $
TYPE=TITLE, COLUMN=DEALER_COST, BACKCOLOR=ORANGE, WHEN=ROWTOTAL(DEALER_COST) EQ &TOT_DCOST, $
TYPE=GRANDTOTAL, BACKCOLOR=ORANGE, $
ENDSTYLE
END
This message has been edited. Last edited by: Dan Satchell,
WebFOCUS 7.7.05
Posts: 1213 | Location: Seattle, Washington - USA | Registered: October 22, 2007