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.
This code is grouping things as I need, but I want the "Total Do I need to make a blank column in the beginning to achieve this? What are some alternatives to get it on the same line?
TABLE FILE CAR PRINT RETAIL_COST SALES COMPUTE PROFIT/D12.2 = RETAIL_COST - SALES; BY COUNTRY NOPRINT ON COUNTRY SUMMARIZE AS 'Total' SUBHEAD "SUBFOOT " " " " END
Yes, using a DUMMY column with a subfoot and styling:
DEFINE FILE CAR DUMMY/A1 = ' '; END
TABLE FILE CAR PRINT RETAIL_COST SALES COMPUTE PROFIT/D12.2 = RETAIL_COST - SALES; BY DUMMY NOPRINT BY COUNTRY NOPRINT -* ON COUNTRY SUMMARIZE AS 'Total' ON DUMMY SUBFOOT "Total <TOT.RETAIL_COST <TOT.SALES <TOT.PROFIT" ON TABLE SET STYLE * Style components Here TYPE=SUBFOOT, LINE=1, ITEM=1, JUSTIFY=LEFT , STYLE=BOLD, $ TYPE=SUBFOOT, LINE=1, ITEM=2, STYLE=BOLD, POSITION = RETAIL_COST, $ TYPE=SUBFOOT, LINE=1, ITEM=3, STYLE=BOLD, POSITION = SALES $ TYPE=SUBFOOT, LINE=1, ITEM=4, STYLE=BOLD, POSITION = PROFIT, $ ENDSTYLE END -EXIT
Sort by, at least, one visible alphanumeric field.
TABLE FILE CAR
PRINT
RETAIL_COST
SALES
COMPUTE PROFIT/D12.2 = RETAIL_COST - SALES;
BY COUNTRY NOPRINT SUMMARIZE AS 'Total'
BY MODEL
SUBHEAD
" "
SUBFOOT
" "
" "
END