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 email responses to elliot.siegel@juliusbaer.com as I dont have much internet access. Here is my sample data Date Beginning Bal Inflow Outflow End Bal 20040131 100 10 5 105 20040228 105 30 40 95 20040331 95 100 0 195 20040430 195 10 50 155
Here is the report that I want to create Beginning Bal Total Inflow Total Outflow End Bal 100 150 95 155
Which means that my basic criteria are that I take the begining balance from the earliest month and the end bal from the latest month and show the sum of the total inflow and the total outflow.
If you could let me know how I can do this I would greatly appreciate it. I tried using a compute field to compare the value of the date to the min and the max and if the value of the date is the min then use the value for the begining bal otherwise use 0 and with similar logic for the end bal. However, it seems like I cant use a calculated field on a row by row basis. here is the fex that i used. note that I did not included the endbal as it uses the same type of logic as begbal.
TABLE FILE WF_NNM_MIS_REGION SUM COMPUTE BEGBAL = IF ASOFDATE NE '&ASOFMIN' THEN 0 ELSE OPENING_BALANCE; AS 'BEG'
Your making harder than it is. Try the following code that sums the inflow and outflow but gives the first beginning balance and the last ending balance. This would output the numbers in your example.
table file filename sum fst.beginningbal inflow outflow lst.endbal end
Posts: 115 | Location: Chicago, IL | Registered: May 28, 2004