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.
how do i reference in 'style sheet' terms that subtotal fieldname ON CAR SUBTOTAL AS '' how do i reference that value of car that shows up. i need to right adjust it. its gotta be easy but i'm blanking out...This message has been edited. Last edited by: Kerry,
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003
If you are showing the column for which you are doing a SUBTOTAL then you can use the following:
TABLE FILE CAR SUM RCOST DCOST BY COUNTRY BY CAR ON COUNTRY SUBTOTAL AS '' ON TABLE SET STYLE * TYPE=SUBTOTAL, COLUMN=COUNTRY, JUSTIFY=RIGHT,$ ENDSTYLE END
If you have a NOPRINT on the BY field for which you are doing a SUBTOTAL then you need to apply the formating to the entire SUBTOTAL line and then reformat specific columns in the SUBTOTAL line back to "normal" formating.
TABLE FILE CAR SUM RCOST DCOST BY COUNTRY NOPRINT BY CAR ON COUNTRY SUBTOTAL AS '' ON TABLE SET STYLE * TYPE=SUBTOTAL, JUSTIFY=RIGHT, STYLE=BOLD,$ TYPE=SUBTOTAL, COLUMN=RCOST, STYLE=-BOLD,$ TYPE=SUBTOTAL, COLUMN=DCOST, STYLE=-BOLD,$ ENDSTYLE END
Thanks!
Mickey
FOCUS/WebFOCUS 1990 - 2011
Posts: 995 | Location: Gaithersburg, MD, USA | Registered: May 07, 2003
hey Mick i tried BY=COUNTRY, JUSTIFY=CENTER and it 1) centered most(*not all*) of the data as well as the label 2) dropped the border styling
If i just do COLUMN=COUNTRY,JUSTIFY=CENTER nothing happens
I'm just going to go plain vanilla TYPE=SUBTOTAL,JUSTIFY=RIGHT, and its good enuf, it justifies the whole line, which is numeric, except for the label, so its *ok*.
muchas muchas gracias to you both
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003