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.
I have 1 column that I am outputting to a report and it is quite a few rows long to where it is stretching for 3 pages. Is it possible to wrap a column if it gets to the bottom of a page to create a second column right next to it starting at the top?
Can't think of a way to do precisely what you ask, but you could turn one column into 4 (or 40, I suppose). Something like this (where ORIG_COL is the column in question. I assumed a format of A20):
DEFINE FILE TEST COUNTER/I2 = IF COUNTER EQ 4 THEN 1 ELSE COUNTER + 1; COUNTER2/I7 = IF COUNTER EQ 1 THEN COUNTER2 + 1 ELSE COUNTER2; COL1/A20 = IF COUNTER EQ 1 THEN ORIG_COL ELSE ' '; COL2/A20 = IF COUNTER EQ 2 THEN ORIG_COL ELSE ' '; COL3/A20 = IF COUNTER EQ 3 THEN ORIG_COL ELSE ' '; COL4/A20 = IF COUNTER EQ 4 THEN ORIG_COL ELSE ' '; END
TABLE FILE TEST SUM COL1 COL2 COL3 COL4 BY COUNTER2 NOPRINT END
Use of the IMOD function might be a bit more clever, but I can't see that it would work any better.
Posts: 135 | Location: Portland, OR | Registered: March 23, 2005