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] Across COMPUTE

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] Across COMPUTE
 Login/Join
 
Master
posted
Hello

I am trying to do a COMPUTE for ACORSS but having issues. This is the final table structure after all the calculations and join.
TABLE FILE TAB1
SUM
	SALES
ACROSS SALE_DT AS ''
BY REGION AS ''
END

        2015-01  2014-12  2014-01 
West    27       29       26 
North   28       26       24 
South   32       31       25 


1st column (2015-01) will have the value as is but 2nd and 3rd columns should show a number after dividing 1st value and that column value.
for example -
for West  2015-01 will have 27
          2014-12 will have this value... (27/29)
          2014-01 will have this value... (27/26)
for North 2015-01 will have 28
          2014-12 will have this value... (28/26)
          2014-01 will have this value... (28/24)
for West  2015-01 will have 32
          2014-12 will have this value... (32/31)
          2014-01 will have this value... (32/25)

Desired Output:

        2015-01  2014-12  2014-01 
West    27       0.93     1.03 
North   28       1.07     1.16 
South   32       1.03     1.28 


Please suggest.

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


8.1.05
HTML,PDF,EXL2K, Active, All
 
Posts: 484 | Registered: February 03, 2009Report This Post
Virtuoso
posted Hide Post
Try this:
  
TABLE FILE TAB1
PRINT
  SALES
AND COMPUTE
  FIRST/I1=(REGION NE LAST REGION);
  BASE/D12.2  = IF (FIRST) THEN SALES ELSE LAST BASE;
  SHOW/D12.2  = IF (FIRST) THEN BASE ELSE SALES/BASE;
BY REGION
BY HIGHEST SALE_DT
ON TABLE HOLD AS TAB2
END

TABLE FILE TAB2
WRITE
  SHOW AS ''
BY REGION
ACROSS HIGHEST SALE_DT
END


- Jack Gross
WF through 8.1.05
 
Posts: 1925 | Location: NYC | In FOCUS since 1983 | Registered: January 11, 2005Report This Post
Master
posted Hide Post
quote:
Originally posted by j.gross:
Try this:
  
TABLE FILE TAB1
PRINT
  SALES
AND COMPUTE
  FIRST/I1=(REGION NE LAST REGION);
  BASE/D12.2  = IF (FIRST) THEN SALES ELSE LAST BASE;
  SHOW/D12.2  = IF (FIRST) THEN BASE ELSE SALES/BASE;
BY REGION
BY HIGHEST SALE_DT
ON TABLE HOLD AS TAB2
END

TABLE FILE TAB2
WRITE
  SHOW AS ''
BY REGION
ACROSS HIGHEST SALE_DT
END


Thanks Jack. This worked. I had to make some conversions to alpha as I needed to add custom text etc to titles and data.


8.1.05
HTML,PDF,EXL2K, Active, All
 
Posts: 484 | Registered: February 03, 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] Across COMPUTE

Copyright © 1996-2020 Information Builders