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.



Read-Only Read-Only Topic
Go
Search
Notify
Tools
Report Generation
 Login/Join
 
Member
posted
Hello All,

I want to generate report like the fallowing,



WEEKS
1 2 3 AVG 4 5 6 AVG %inc #of Inc
DESC

A 10 20 30 30 15 25 5 15 50% 15
B 9 3 6 6 10 10 1 7 -16.7 -1


Is it possible to do in Webbfocus.

Thanks and Regards,
Preetham
 
Posts: 10 | Registered: April 12, 2006Report This Post
Expert
posted Hide Post
yes, of course, several ways; Have you taken any of the course offerings? or read the manuals at all?




In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
 
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003Report This Post
Expert
posted Hide Post
Hi Preetham,

Please try the following sample code using the CAR file.
DEFINE FILE CAR
CTR/I2 = IF CAR NE LAST CAR THEN 1 ELSE CTR + 1;
END
TABLE FILE CAR
SUM
     WIDTH
     HEIGHT
     LENGTH
     COMPUTE COMP_DIM_AVG/D12.2 = ( WIDTH + HEIGHT + LENGTH ) / CTR;
     DEALER_COST
     RETAIL_COST
     SALES
     COMPUTE COMP_SALES_AVG/D12.2 = ( DEALER_COST + RETAIL_COST + SALES ) / CTR;
     COMPUTE COMP_PERCENT/D12.2% = COMP_SALES_AVG / COMP_DIM_AVG;
             CTR
BY COUNTRY NOPRINT


Hope this helps. Smiler

Cheers,

Kerry


Kerry Zhan
Focal Point Moderator
Information Builders, Inc.
 
Posts: 1948 | Location: New York | Registered: November 16, 2004Report This Post
Member
posted Hide Post
Thanks for the reply.

I want to generate reports, as Matrix reports.

Example,

Table file car
sum
sales
by country
across year
end

Assuming I am generating report for the last 12 years. Then after every six years i need to find the average sale. Then compare the two avearges for finding the % increase in averages and # of increase between aveages.

Hopefully this explain Better...
 
Posts: 10 | Registered: April 12, 2006Report This Post
Virtuoso
posted Hide Post
Do you want to calculate a "moving average" on every 6 year?
If so I worked out a way to do so (on the moving average of 12 months) for the sales made by every account manager and make a printed report or a graph.
I can explain it, but need to translate it into English first (it will take some time)




Frank

prod: WF 7.6.10 platform Windows,
databases: msSQL2000, msSQL2005, RMS, Oracle, Sybase,IE7
test: WF 7.6.10 on the same platform and databases,IE7

 
Posts: 2387 | Location: Amsterdam, the Netherlands | Registered: December 03, 2006Report This Post
Expert
posted Hide Post
Hi Preetham,

Can you please try the following as an example and let us know how it works for you?

TABLE FILE CENTSTMT
SUM
     BUDGET_AMT
BY GL_ACCOUNT_PARENT NOPRINT
BY GL_ACCOUNT_CAPTION
ACROSS PERIOD
COMPUTE 3MONAVG/D12.2 = (C1 + C2 + C3) / 3;
COMPUTE 3MONAVG2/D12.2 = (C4 + C5 + C6) / 3;
COMPUTE PCTINCR/D12.2% = (3MONAVG/3MONAVG2) * 100;
COMPUTE TOTNUMINC/D12.2 =  3MONAVG2 - 3MONAVG;
END


Hope it helps. Big Grin

Cheers,

Kerry


Kerry Zhan
Focal Point Moderator
Information Builders, Inc.
 
Posts: 1948 | Location: New York | Registered: November 16, 2004Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic


Copyright © 1996-2020 Information Builders