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.
DEFINE FILE CAR
L_TOTAL/I8 WITH LENGTH = L_TOTAL+LENGTH;
L_COUNT/I8 WITH LENGTH = L_COUNT+1;
END
-RUN
TABLE FILE CAR
PRINT MODEL
LENGTH
L_TOTAL
L_COUNT
END
I want to put the L_TOTAL AND L_COUNT field as a totals for the LENGTH.
Here is desired result:
MODEL LENGTH
----- ------
a 1
b 2
c 3
d 4
--
SUM TOTAL: 10
COUNT: 4
The report output is HTML.
I have tried to use the SUBFOOT but I can't insert the totals under the LENGTH column...
You really need to read the posts that others make as well as adding your own. You might learn something else
If you had read some recent posts then you would most likely have tried HEADALIGN=BODY -
L_TOTAL NOPRINT
L_COUNT NOPRINT
FOOTING
"SUM TOTAL: <L_TOTAL"
"COUNT: <L_COUNT"
ON TABLE SET HTMLCSS ON
ON TABLE SET PAGE NOLEAD
ON TABLE SET STYLE *
TYPE=REPORT, HEADALIGN=BODY, $
T
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004