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.
Greetings, I have a "summary" report with 2 columns but many rows that will like to show in a page with multiple sections/columns what might be called a columnar report. Is there a way to do this in webFOCUS
this is the code for my report TABLE FILE SALES SUM SALE_AMT BY CUST_SOLDTO END
Thanks in advanced for your helpThis message has been edited. Last edited by: Kerry,
What you do is create 2 counters, one for the number of columns you want across the page and one for the rows.
For example DEFINE FILE CAR COL/I1=IF COL EQ 4 THEN 1 ELSE COL + 1; ROW/I6=IF COL EQ 1 THEN ROW +1 ELSE ROW; END TABLE FILE CAR SUM CAR MODEL BY ROW NOPRINT ACROSS COL NOPRINT END
Posts: 140 | Location: Adelaide South Australia | Registered: October 27, 2006
I am not sure I understand the difference between "wrap" or "split" but my guess is I want to "split' it into multiple sets of columns here is an example of what I am looking to do:
I tried the counters but since they happen at define, prior to the calculations being made, it shows multiple lines for a customer. I am trying to summarize sales by customer.
hope this clarifies my question.
ThanksThis message has been edited. Last edited by: jilo,
I tried the counters but since they happen at define, prior to the calculations being made, it shows multiple lines for a customer. I am trying to summarize sales by customer.
Then what you would do is summarize your data into the order you want and HOLD it then apply the counters to the HOLD file.
If you can be more specific about what your data looks like (eg post your MAS file) and more specific about the exact layout you wnat then there will be an easy solution.
Posts: 140 | Location: Adelaide South Australia | Registered: October 27, 2006
Waz, thank you much for your solution it worked perfectly. for future reference another search word will be multi-pane. Here is the outcome of my report
Not the production version but pretty close.
OPALTOSH: I tried your suggestion with the hold file and still did not work, I even added another counter for the pages but still not right. This is how that looked like: