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
SUM CNT.MODEL
PCT.CNT.MODEL
BY MODEL
ACROSS COUNTRY ACROSS-TOTAL
ON TABLE COLUMN-TOTAL AS 'TOTAL'
END
How can I remove the ACROSS-TOTAL of the PCT.CNT.MODEL column? In other words, I only want to show the % totals for each across value but not show it in the totals. Thanks for the help.
DJThis message has been edited. Last edited by: DJ,
WebFOCUS 7.6.8 zOS 1.9 (Mainframe) Excel, PDF, HTML, Active HTML
That's a good question... Can you get away with "hiding it"? That would be to change the color to white, as follows:
ON TABLE SET STYLE *
TYPE=REPORT, GRID=OFF,$
TYPE=TITLE, COLUMN=N15, COLOR=WHITE,$
TYPE=DATA, COLUMN=N15, COLOR=WHITE,$
ENDSTYLE
I hardly believe that I'm suggesting that method. But, I don't know of a way to add a list of fields to the ROW-TOTAL the way you can to SUBTOTAL... So, if it works... Go for it...
I'm hoping that there's a beter solution then this...
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005
TABLE FILE CAR
SUM CNT.MODEL NOPRINT
BY MODEL
SUM CNT.MODEL
PCT.CNT.MODEL
BY MODEL
ACROSS COUNTRY
COMPUTE TOTAL/I5 = C1;
ON TABLE COLUMN-TOTAL AS 'TOTAL'
END
This would do the trick. Only thing is that the column title of the TOTAL filed. It is placed on the same level as the across field, which may not be the intended place.
GamP
- Using AS 8.2.01 on Windows 10 - IE11.
in Focus since 1988
Posts: 1961 | Location: Netherlands | Registered: September 25, 2007
Doug, I am not too keen on having to hide things (as I'm sure you are not either ), but I do appreciate the effort. It was certainly better than anything I could have come up with.
GamP, your solution is a solid one and I see what you mean about the column title. But, really, isn't that where it should belong? I have implemented this into my report.
Thanks so much for both of your help!
DJ
WebFOCUS 7.6.8 zOS 1.9 (Mainframe) Excel, PDF, HTML, Active HTML