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.
Ok, hope that I can explain this clearly. I've got a report that is summing quantities across locations. The user wants a row-total (got that done) but they also want a sub-total of specific locations on report. This is what report needs to look like:
Date Loc1 Loc2 Loc3 etc. subtotal Total 11/20/06 qty qty qty of loc1 & loc2 11/21/06 qty qty qty .....
Any suggestions/ideas? Thanks much!
Posts: 8 | Location: 1600 Cantrell Little Rock, AR 72205 | Registered: April 13, 2005
Did this with Dev Studio, hokey way I suppose, the subtotals are columns in the report.
DEFINE FILE CENTORD ADD BOSDAL/D7= IF PLANT EQ 'BOS' OR 'DAL' THEN QUANTITY ELSE 0; ALLLOC/D7 = QUANTITY; END TABLE FILE CENTORD SUM BOSDAL AS 'Boston,Dallas' ALLLOC AS 'Total,All Locations' BY YEAR SUM QUANTITY BY YEAR ACROSS PLANT ON TABLE SET PAGE-NUM OFF ON TABLE COLUMN-TOTAL AS 'TOTAL' ON TABLE PCHOLD FORMAT HTML ON TABLE SET HTMLCSS ON ON TABLE SET STYLE * UNITS=IN, LEFTMARGIN=0.500000, RIGHTMARGIN=0.500000, TOPMARGIN=0.500000, BOTTOMMARGIN=0.500000, SQUEEZE=ON, ORIENTATION=PORTRAIT, $ TYPE=REPORT, GRID=OFF, FONT='ARIAL', SIZE=9, COLOR='BLACK', BACKCOLOR='NONE', STYLE=NORMAL, TOPGAP=0.013889, BOTTOMGAP=0.027778, $ TYPE=TITLE, STYLE=BOLD, $ TYPE=TABHEADING, SIZE=12, STYLE=BOLD, $ TYPE=TABFOOTING, SIZE=12, STYLE=BOLD, $ TYPE=HEADING, SIZE=12, STYLE=BOLD, $ TYPE=FOOTING, SIZE=12, STYLE=BOLD, $ TYPE=SUBHEAD, SIZE=10, STYLE=BOLD, $ TYPE=SUBFOOT, SIZE=10, STYLE=BOLD, $ TYPE=SUBTOTAL, BACKCOLOR=RGB(210 210 210), $ TYPE=ACROSSVALUE, SIZE=9, $ TYPE=ACROSSTITLE, STYLE=BOLD, $ TYPE=GRANDTOTAL, BACKCOLOR=RGB(210 210 210), STYLE=BOLD, $ ENDSTYLE END
Leah
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004
Thanks - that worked great - another question though. The subtotals are printing on the left hand side of the report, is there any way that you know of to move them over to the right? When I try summing the subtotals after the detail, I get an error because of my sorting request....
Posts: 8 | Location: 1600 Cantrell Little Rock, AR 72205 | Registered: April 13, 2005