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.
For example, I've got 5 specific values that I want to always appear as the ACROSS fields, with locations as the primary BY field. Right now, if we don't have data value for 1 of the 5 ACROSS columns for a location, that ACROSS column does not appear on the report, which changes the overall structure of the report. Is there a way to keep the across values static, filling in zeros/blanks/etc for missing values?
Hi, Sometimes the use of ACROSS can be problematic, for instance if you have SUBFOOTS where you want to show subtotals of specific columns only. You can then use a set of DEFINE fields. Suppose that the field you want to sum ACROSS is called SALES with format I5 and the sort field is called SEATS:
DEFINE FILE ...
SALES2/I5 = IF SEATS EQ 2 THEN SALES ELSE 0;
SALES4/I5 = IF SEATS EQ 4 THEN SALES ELSE 0;
SALES5/I5 = IF SEATS EQ 5 THEN SALES ELSE 0;
SALES7/I5 = IF SEATS EQ 7 THEN SALES ELSE 0;
SALES9/I5 = IF SEATS EQ 9 THEN SALES ELSE 0;
END
TABLE FILE ...
SUM SALES2 SALES4 SALES5 SALES7 SALES9
BY ...
WHERE ...
END
Daniel In Focus since 1982 wf 8.202M/Win10/IIS/SSA - WrapApp Front End for WF
Posts: 1980 | Location: Tel Aviv, Israel | Registered: March 23, 2006