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 have 3 equations to compute, Earned Premium %, Loss Ratio %, Frequency %. The first two are simple to compute, (Field 1 / Field 2) * 100. However, the last computation requires the COUNT of Field 1 / Field 2 *100. Is there any way to simply do this or is it as involved as it appears to be?
Here's what I've tried:
TABLE FILE CAR
SUM
CNT.DST.CAR.BODY.SALES AS 'COUNT,DISTINCT,CAR.BODY.SALES'
CAR.BODY.DEALER_COST
COMPUTE Cost_By_Sales/D12.2 = CAR.BODY.DEALER_COST / CAR.BODY.SALES;
BY LOWEST CAR.COMP.CAR
WHERE CAR.COMP.CAR EQ 'BMW';
ON TABLE SET PAGE-NUM NOLEAD
ON TABLE NOTOTAL
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET HTMLCSS ON
END
Output:
Car: BMW Sales: 5 Dealer Cost: 49,500 Cost_By_Sales: .62
What I would expect to see in Cost_by_Sales is 9,900(49,000/5).This message has been edited. Last edited by: T.Peters,
WebFOCUS: 7702 O/S : Windows Data Migrator: 7702
Posts: 127 | Location: San Antonio | Registered: May 29, 2009
TABLE FILE CAR SUM CNT.DST.CAR.BODY.SALES AS 'COUNT,DISTINCT,CAR.BODY.SALES' CAR.BODY.DEALER_COST COMPUTE Cost_By_Sales/D12.2 = CAR.BODY.DEALER_COST / CNT.DST.CAR.BODY.SALES; BY LOWEST CAR.COMP.CAR WHERE CAR.COMP.CAR EQ 'BMW'; ON TABLE SET PAGE-NUM NOLEAD ON TABLE NOTOTAL ON TABLE PCHOLD FORMAT HTML ON TABLE SET HTMLCSS ON END
WF 7.6.11 Oracle WebSphere Windows NT-5.2 x86 32bit
TABLE FILE CAR SUM CNT.DST.CAR.BODY.SALES AS 'COUNT,DISTINCT,CAR.BODY.SALES' CAR.BODY.DEALER_COST COMPUTE Cost_By_Sales/D12.2 = CAR.BODY.DEALER_COST / CNT.DST.CAR.BODY.SALES; BY LOWEST CAR.COMP.CAR WHERE CAR.COMP.CAR EQ 'BMW'; ON TABLE SET PAGE-NUM NOLEAD ON TABLE NOTOTAL ON TABLE PCHOLD FORMAT HTML ON TABLE SET HTMLCSS ON END
WF 8 version 8.2.04. Windows. In focus since 1990.
Posts: 189 | Location: pgh pa | Registered: October 06, 2004