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     How do i find the averags in descending order

Read-Only Read-Only Topic
Go
Search
Notify
Tools
How do i find the averags in descending order
 Login/Join
 
<Vinod>
posted
Hi, I have a code like below

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.

Thanks
Vinod
 
Report This Post
Expert
posted Hide Post
Vindo,

Have you tried doing what you asked in your last line?
quote:
hold and then calculate

Try it and work with it, you might surprise yourself what you find out.

T



In FOCUS
since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2  
WebFOCUS App Studio 8.2.06 standalone on Windows 10 
 
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004Report This Post
Virtuoso
posted Hide Post
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, 2007Report 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     How do i find the averags in descending order

Copyright © 1996-2020 Information Builders