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.
Please run this code and note that when you manually total the percents, the total is 100.1 not 100. I've tried many variations of field formats (P12, P12.2, D12....) for the percentage field as well as RECOMPUTE OR SUMMARIZE instead of subtotal for the ALL field, but in my report I still get subtotals at the COUNTRY level that end up totaling more than 100%.
Does anyone have a solution for this?
DEFINE FILE CAR
ALL/A3 = 'ALL';
END
TABLE FILE CAR
SUM
WHEELBASE
PCT.WHEELBASE WITHIN ALL AS 'PERCENT'
BY ALL
BY COUNTRY
BY CAR
ON COUNTRY SUBTOTAL AS 'TOTAL'
ON ALL RECOMPUTE AS 'GRAND TOTAL'
END
Bethany WF 7.1.3 DevStudio 7.1.4
Server Environment: Win2K3 Server WebFOCUS 7.13 Apache Tomcat standalone application server
WHEELBASE is in D format which keep more of the decimal places than what will be displayed. Also, if you want the calculation to trully use packed, you need to redefine WHEELBASE to P12.1 or P12.2. Using packed format, your total will be less than 100.
Windows: WF 7.6.2: SQL Server 2008 R2
Posts: 86 | Location: Chicago | Registered: August 03, 2007
DEFINE FILE CAR
ALL/A3 = 'ALL';
END
TABLE FILE CAR
SUM
WHEELBASE
PCT.WHEELBASE
PCT.WHEELBASE/D8.4 WITHIN ALL AS 'PERCENT'
BY ALL
BY COUNTRY
BY CAR
ON COUNTRY SUBTOTAL AS 'TOTAL'
ON ALL RECOMPUTE AS 'GRAND TOTAL'
END
Note the first pct.wheelbase field shows only 1 decimal place, the second 4 decimals. This is a rounding display issue.
Hope this helps.
Cheers,
Kerry
Kerry Zhan Focal Point Moderator Information Builders, Inc.
Posts: 1948 | Location: New York | Registered: November 16, 2004