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.
When producing an 'ON TABLE SET ONLINE-FMT EXL2K' formatted report, the FOOTING lines are merged which prevents users from utilizing 'Data--Sort' within EXCEL. I realize users can just unclick the "Merge" within Format--Cells in EXCEL, but can how can I unmerge them ahead of time (via stylesheets?)
Also, my column data is coming across with an unreadable character preceding the text for each column name. Can I get rid of this as well?
Thanks!This message has been edited. Last edited by: Kerry,
In a WebFOCUS report, Headings and footings are simply lines of text, unless you you use style-sheet commands to split the text up and have it placed within report columns. TYPE=FOOTING, HEADALIGN=BODY is used to split the individual items in a FOOOTING, items being text or data-fields.
A quick example:
TABLE FILE CAR
SUM
SALES
BY COUNTRY
BY CAR
FOOTING
"THIS IS<+0>A FOOTING<MODEL"
ON TABLE SET STYLESHEET *
TYPE=REPORT, FONT='ARIAL', SIZE=8, $
TYPE=FOOTING, HEADALIGN=BODY, $
END
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
Thanks re: 'unmerging'. The HEADALIGN=BODY took care of that!
Now, how do I get rid of the unprintable characters in the column TITLEs? They appear as little squares before the text when within the Sort option in EXCEL and show up blank when the user clicks on that field to sort. May be character?
USING FRABCIS' EXAMPLE AND ADDING IN THE 'ON TABLE PCHOLD FORMAT EXL2K' I DO NOT SEE THE UNPRINTABLE CHARS. YOU MENTIONED. YOU CAN ALWAYS DO AN AS '' AND THEN CONTROL YOUR TITLES IN A SUBHEAD FASHION.. HOPE THIS HELPS. TABLE FILE CAR SUM SALES BY COUNTRY BY CAR ON TABLE PCHOLD FORMAT EXL2K FOOTING "THIS IS<+0>A FOOTINGON TABLE SET STYLESHEET * TYPE=REPORT, FONT='ARIAL', SIZE=8, $ TYPE=FOOTING, HEADALIGN=BODY, $ END