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.
In the above example, I need to sort the latest quarter data ( here 2015 q4) in descending order. So the data with 1.70% is on top followed by 1.62% and the others. This is a calculated field.
Thanks DeepaThis message has been edited. Last edited by: <Emily McAllister>,
... BY HIGHEST TOTAL ComputedField BY Name ... ACROSS YearQuarter
WebFOCUS 8.1.03, Windows 7-64/2008-64, IBM DB2/400, Oracle 11g & RDB, MS SQL-Server 2005, SAP, PostgreSQL 11, Output: HTML, PDF, Excel 2010 : Member of User Group Benelux :
Shru, In fact you want ALL your output to be sorted by your Q4 values. Once you created the ACROSS you do not have access to the Q4 data in order to sort, so you should create them before hand. I would create a DEFINE field for the Q4 data, say MYQ4 and then issue: SUM MYQ4 NOPRINT BY TOTAL MYQ4 NOPRINT BY NAME SUM calculated_data BY TOTAL MYQ4 NOPRINT BY NAME ACROSS QUARTER ... Using the CAR file as an example:
-* File shru02.fex
DEFINE FILE CAR
S5/D6=IF SEATS EQ 5 THEN RCOST ELSE 0;
END
TABLE FILE CAR
SUM S5 NOPRINT
BY HIGHEST TOTAL S5 NOPRINT
BY COUNTRY
SUM RCOST
BY HIGHEST TOTAL S5 NOPRINT
BY COUNTRY
ACROSS SEATS
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
Slight modification of Daniel code to get the max value of across field.
TABLE FILE CAR
SUM
COMPUTE MAX_CNTRY/A50=MAX.COUNTRY; NOPRINT
SUM
COMPUTE SS/I11=IF COUNTRY EQ MAX_CNTRY THEN SALES ELSE 0; NOPRINT
BY HIGHEST SS NOPRINT
BY MODEL
SUM
SALES AS ''
BY HIGHEST SS NOPRINT
BY MODEL
ACROSS COUNTRY
END