Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     How do I style the Titles of an Across and there associated Grand Totsal Lines ????

Read-Only Read-Only Topic
Go
Search
Notify
Tools
How do I style the Titles of an Across and there associated Grand Totsal Lines ????
 Login/Join
 
Gold member
posted
Given the following code How can I style the words retail and Dealer DIFFERENTLY IN THE TOTALS SECTION :
 
TABLE FILE CAR
SUM
RETAIL_COST OVER AS 'RETAIL'
DEALER_COST AS 'DEALER'

BY MODEL

ACROSS BODYTYPE

ON TABLE ROW-TOTAL
ON TABLE COLUMN-TOTAL
END
 


Duane

WebFOCUS 8.0.7
DS 8.0.7 AS 8.0.7
Windows
Output: Excel, HTML, PDF, AHTML,Mobile
In Focus 1982
 
Posts: 83 | Location: Princeton NJ | Registered: October 26, 2007Report This Post
Virtuoso
posted Hide Post
Something like this?

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, 2007Report This Post
Gold member
posted Hide Post
Thank you dan but not the quite what I was looking for. add the following line and tell me how to fill in the unshaded area will be self explanitory.

TYPE = GRANDTOTAL,BACKCOLOR= ORANGE,$

Thanks


Duane

WebFOCUS 8.0.7
DS 8.0.7 AS 8.0.7
Windows
Output: Excel, HTML, PDF, AHTML,Mobile
In Focus 1982
 
Posts: 83 | Location: Princeton NJ | Registered: October 26, 2007Report This Post
Virtuoso
posted Hide Post
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, 2007Report This Post
Silver Member
posted Hide Post
Duane - I just added couple more styles to Dan's previous code.

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, STYLE=BOLD, WHEN=ROWTOTAL(RETAIL_COST) EQ &TOT_RCOST, $
TYPE=TITLE, COLUMN=DEALER_COST, BACKCOLOR=ORANGE, STYLE=BOLD, WHEN=ROWTOTAL(DEALER_COST) EQ &TOT_DCOST, $
TYPE=GRANDTOTAL, BACKCOLOR=ORANGE, $
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, $
TYPE=GRANDTOTAL,
COLUMN=N12,
BACKCOLOR=RGB(204 153 255),
STYLE=BOLD,
$
TYPE=GRANDTOTAL,
COLUMN=N13,
BACKCOLOR=RGB(0 204 255),
STYLE=BOLD,
$
TYPE=GRANDTOTAL,
ACROSSCOLUMN=N1,
FONT='ARIAL',
COLOR='BLACK',
BACKCOLOR=RGB(204 153 255),
STYLE=BOLD,
$
TYPE=GRANDTOTAL,
ACROSSCOLUMN=N2,
FONT='ARIAL',
COLOR='BLACK',
BACKCOLOR=RGB(0 204 255),
STYLE=BOLD,
$
ENDSTYLE
END


product release:8203
o/s: windows 10
expected o/p formats: HTML,EXCEL,PDF
 
Posts: 34 | Location: Kearney, Nebraska | Registered: December 14, 2011Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     How do I style the Titles of an Across and there associated Grand Totsal Lines ????

Copyright © 1996-2020 Information Builders