Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] Manipulating Summary Values - Report Excel

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] Manipulating Summary Values - Report Excel
 Login/Join
 
Member
posted
Hi,
I have this temporary file:

KEY   COL1         COL2         COL3    FIX_VALUE    COL4       COL5
----- ---- ------------   ---------    ----------   ------    -------
XXX	CX	 200,00	 -99,030        -0,030   99,000     198,00
XXX	TT	 100,00	 -90,030        -0,030   90,000 	   90,00
ZZZ	CX	  50,00	-396,030        -0,030  396,000 	  198,00
ZZZ	TT	  30,00	-300,030        -0,030  300,000 	   90,00


Where the columns 4 and 3 are calculeted in this way:

COL4 = COL5*36500/365/COL2
COL3 = FIX_VALUE - COL4



I would like to create a report excel with the row total with sum for column 2 and 5 and column 4 and 3 calculated as for the temporary file.

The report should be like this:

KEY   COL1         COL2             COL3       FIX_VALUE     COL4           COL5
  ----- ---- ------------    -------------    ---------- --------  -------------
XXX	CX        200,00          -99,030        -0,030   99,000         198,00
	TT        100,00          -90,030        -0,030   90,000          90,00
Total              300,00          -96,030        -0,030   96,000         288,00

ZZZ	CX         50,00         -396,030        -0,030  396,000         198,00
	TT         30,00         -300,030        -0,030  300,000          90,00
Total               80,00         -360,030        -0,030  360,000         288,00



I tried in this way:
TABLE FILE TMP
SUM COL2
    COL3
    FIX_VALUE
    COL4
    COL5
BY KEY
   COL1
ON KEY SUBTOTAL AS 'TOTAL'
ON TABLE SAVE AS 'XLSTOTAL' FORMAT EXL2K   
END


I don't want the sum for COL4 and COL3, but they should be calculated on the base of COL5 and COL2

Thanks for any help

This message has been edited. Last edited by: Kerry,



FOCUS 7.2.0S1
Mainframe - MVS 390
Excel, Flat file

Italy
 
Posts: 25 | Registered: June 23, 2009Report This Post
Gold member
posted Hide Post
If instead you calculate COL3 and COL4 'on the fly' via a COMPUTE statement within your TABLE command, you could then say:

  
ON KEY RECOMPUTE COL3 COL4
ON KEY SUBTOTAL COL2 COL5


The RECOMPUTE statement will recalculate your COMPUTE statements at break time.


WebFOCUS 8105
Windows;
DB2, UDB, SQL Server, Oracle
FOCUS-WebFOCUS since 1981
 
Posts: 84 | Registered: December 13, 2005Report This Post
Expert
posted Hide Post
TABLE FILE TMP
SUM 
COL2
COMPUTE COL3/D12 = FIX_VALUE - (COL5 * 36500 / 365 / COL2);
FIX_VALUE
COMPUTE COL4/D12 = COL5 * 36500 / 365 / COL2;
COL5
BY KEY
BY COL1
ON KEY RECOMPUTE AS 'TOTAL'  
END


Francis


Give me code, or give me retirement. In FOCUS since 1991

Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
 
Posts: 10577 | Location: Toronto, Ontario, Canada | Registered: April 27, 2005Report This Post
Member
posted Hide Post
Thank you Microfich and Francis, COMPUTE and ON KEY RECOMPUTE work fine together.

Actually the value 365 is a field of the file and I only had to change the COMPUTE in this way:

COMPUTE COL3/D12 = LAST FIX_VALUE - (COL5 * 36500 / (LAST NUMBER_DAYS) / COL2);
COMPUTE COL4/D12 = COL5 * 36500 / (LAST NUMBER_DAYS) / COL2;


otherwise FIX_VALUE and NUMBER_DAYS are multiplied, by the number of keys present in file, in the total rows.
The value of these fields never change, so it should be correct take the last value.

Is there a better way?

Thanks a lot

This message has been edited. Last edited by: ac1,



FOCUS 7.2.0S1
Mainframe - MVS 390
Excel, Flat file

Italy
 
Posts: 25 | Registered: June 23, 2009Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] Manipulating Summary Values - Report Excel

Copyright © 1996-2020 Information Builders