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.
TABLE FILE LEADTIME SUM AVE.LEADTIME NOPRINT BY REGN_I AS 'Region' BY GRP_I AS 'Group' BY LOWEST DIST_I AS 'District' BY RPT_STR AS 'Store' BY STR_N AS 'StoreName' SUM LEADTIME AS '' COMPUTE FLG/I2 = IF LEADTIME GT 20 AND GF EQ 1 THEN 1 ELSE IF LEADTIME GT 48 AND GF EQ 0 THEN 1 ELSE 2; NOPRINT BY REGN_I AS 'Region' BY GRP_I AS 'Group' BY LOWEST DIST_I AS 'District' BY RPT_STR AS 'Store' BY STR_N AS 'StoreName' BY GF1 AS 'GFSC' ACROSS HIGHEST WK_END_D NOPRINT ACROSS HIGHEST WK_END_DA AS 'Week End Date' COMPUTE AVERAGE/D10 = C1; AS '8 week AVG' END
I need the average in descending.
Can anyone let me know how is this possible in the above code.
DO i need to hold and then calculate, help this out.
You could try this (don't know if this works ok, but a similar thing does work for the CAR database):
TABLE FILE LEADTIME
SUM AVE.LEADTIME NOPRINT
BY TOTAL HIGHEST AVE.LEADTIME NOPRINT
BY REGN_I AS 'Region'
BY GRP_I AS 'Group'
BY LOWEST DIST_I AS 'District'
BY RPT_STR AS 'Store'
BY STR_N AS 'StoreName'
SUM LEADTIME AS ''
COMPUTE FLG/I2 = IF LEADTIME GT 20 AND GF EQ 1 THEN 1
ELSE IF LEADTIME GT 48 AND GF EQ 0 THEN 1 ELSE 2; NOPRINT
BY TOTAL HIGHEST AVE.LEADTIME NOPRINT
BY REGN_I AS 'Region'
BY GRP_I AS 'Group'
BY LOWEST DIST_I AS 'District'
BY RPT_STR AS 'Store'
BY STR_N AS 'StoreName'
BY GF1 AS 'GFSC'
ACROSS HIGHEST WK_END_D NOPRINT
ACROSS HIGHEST WK_END_DA AS 'Week End Date'
COMPUTE AVERAGE/D10 = C1; AS '8 week AVG'
END
The trick is to use the BY TOTAL phrase. This will do the sorting of the report after everything has been calculated and the internal matrix has been created. This will of course resort the entire report, possibly leading to a report layout that you did not anticipate.
Hope this helps ...
GamP
- Using AS 8.2.01 on Windows 10 - IE11.
in Focus since 1988
Posts: 1961 | Location: Netherlands | Registered: September 25, 2007