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.
Is there a way in SUBFOOT code to force a field calculation to be in a separate column when the report runs in Excel. Essentially - I want to code in a tab.
Here's a sample from the SUBFOOT: "Total Participants: I have several summary lines in the SUBFOOT, which all end in ST. calcs on various fields.
Right now it comes out on the report as:
Total Participants: 50 Total Days in program: 1050
All on one line, so the subtotals can't be used for further calculations without manually cutting and pasting them into distinct cells. I want it to be:
Total Participants: 50 Total Days in program: 1050
etc.
ThanksThis message has been edited. Last edited by: Kerry,
Below is some sample code that places subfoot description in colA and the value in colB:
TABLE FILE CAR
SUM
'CAR.BODY.BODYTYPE'
'CAR.SPECS.MPG'
'CAR.BODY.SEATS'
'CAR.BODY.SALES/P11.2C'
COMPUTE TOT_SALES/P11.2CM = TOT.SALES; NOPRINT
COMPUTE TOT_SALE2/P11.2CM = TOT.SALES; NOPRINT
COMPUTE TOT_SALE3/P11.2CM = TOT.SALES; NOPRINT
BY 'CAR.ORIGIN.COUNTRY'
BY 'CAR.CARREC.MODEL'
-*WHERE COUNTRY = 'ENGLAND';
ON CAR.ORIGIN.COUNTRY SUBFOOT
-*remove the "" below to remove the bank line in the Subfoot
""
-*remove all of the spotmarkers <+0> below to get the colA and colb look and feel
" <+0> <+0> <+0> SUBFOOT1 LINE2 COUNTRY <+0> <ST.CAR.BODY.SALES"
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT EXL2K
ON TABLE SET STYLE *
UNITS=IN,
SQUEEZE=ON,
ORIENTATION=PORTRAIT,
$
TYPE=REPORT,
GRID=OFF,
FONT='TIMES NEW ROMAN',
SIZE=10,
$
TYPE=SUBFOOT,
STYLE=BOLD,
JUSTIFY=RIGHT,
HEADALIGN=BODY,
$
ENDSTYLE
END
WebFOCUS 7.6.9
Reporting client Windows 2003 Service pack 2 using IIS and TomCat 5.5 Reporting Server OS/400 V5R4M0 Outputs: HTML, Excel, PDF, CSV, and Flat Files