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 HEADING CENTER "CAR TEST" " " " " PRINT SEATS AS 'SEATS' DEALER_COST AS 'Dealer,Cost' RETAIL_COST AS 'Retail,Cost' BY COUNTRY NOPRINT BY CAR NOPRINT ON COUNTRY SUBHEAD "ON CAR SUBHEAD "<.CAR" ON COUNTRY SUBTOTAL DEALER_COST RETAIL_COST AS '' ON TABLE SET PAGE-NUM OFF ON TABLE SET STYLE * TYPE=REPORT,GRID=OFF,$ END
The output I get is
CAR TEST
SEATS DealerCost RetailCost ENGLAND JAGUAR
2 7,427 8,878 5 11,194 13,491 JENSEN
4 14,940 17,850 TRIUMPH
2 4,292 5,100
ENGLAND 37,853 45,319
FRANCE PEUGEOT
5 4,631 5,610
FRANCE 4,631 5,610
My requirement is I want the columns Seats Dealercost and Retailcost to be moved to the right. I want my subheading moved up. Can somebody help regarding this. Thanks.This message has been edited. Last edited by: Kerry,
TABLE FILE CAR
HEADING CENTER
"CAR TEST</2"
PRINT
COMPUTE BLANK_COL/A1=' '; AS ''
SEATS AS ''
DEALER_COST AS ''
RETAIL_COST AS ''
BY COUNTRY NOPRINT
BY CAR NOPRINT
ON COUNTRY SUBHEAD
"<COUNTRY"
ON CAR SUBHEAD
"<CAR"
" <+0>Sales<+0>Dealer Cost<+0>Retail Cost"
ON COUNTRY SUBTOTAL DEALER_COST RETAIL_COST AS ''
ON TABLE SET PAGE-NUM OFF
ON TABLE SET STYLE *
TYPE=REPORT,GRID=ON,$
TYPE=SUBHEAD, BY=COUNTRY, HEADALIGN=BODY, $
TYPE=SUBHEAD, BY=CAR, HEADALIGN=BODY, $
END
Thanks a lot.This is what I am looking for. Now in the output I have Country and Car as subhead.can I display both Country and Car side by side on the same line as Seats,Dealercost and Retailcost. This will help me a lot.
your answer helped me a lot.I need one more help.Now I get the country and car in separate lines.what should I do to get both country and car on the same line as Seats,Dealercost and Retailcost. Thanks for your help.