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.
I try to build an html report with webfocus. I build it by using the across method in the empty cells appears a “.” (dot) How can I format the empty cells. I also use a drilldown in the Report by using the DRILLMENUITEM method. I want to have nothing in the empty cells because the drilldown also works on the “.” And that makes not really sense. thanks a lotThis message has been edited. Last edited by: Kerry,
WF Production Version: 7.7.02M WF Test Version: 7.7.02M Developer Studio: 7.7.02 HTML, EXL2K, FLEX, PDF,PPT
Controlling the '.' is done with the NODATA setting (SET NODATA='n/a' for instance will display n/a in stead of a dot). And for across you need to use either the SUM verb, or use the new setting for compressing the across output, SET ACROSSPRT = COMPRESSED, although I don't know exactly when this setting was introduced. So it could be that it is not yet available in the release you're working with ...
GamP
- Using AS 8.2.01 on Windows 10 - IE11.
in Focus since 1988
Posts: 1961 | Location: Netherlands | Registered: September 25, 2007
For the drilldown it will make no difference if there is a dot or a really empty cell. You'll get the link anyway. To control this use conditional styling. Consider the following example:
SET NODATA=''
SET ACROSSPRT = NORMAL
TABLE FILE CAR
PRINT
SEATS
BY 'CAR.COMP.CAR'
ACROSS 'CAR.ORIGIN.COUNTRY'
ON TABLE NOTOTAL
ON TABLE SET STYLE *
$
TYPE=REPORT,
FONT='VERDANA',
SIZE=9,
$
TYPE=DATA,
ACROSSCOLUMN=N1,
WHEN=N2 NE 0,
FOCEXEC=TEST,
$
ENDSTYLE
END
Whether or not the link is shown depends on the WHEN clause in the styling.
GamP
- Using AS 8.2.01 on Windows 10 - IE11.
in Focus since 1988
Posts: 1961 | Location: Netherlands | Registered: September 25, 2007