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 a table that stores comments in an A80 field. There are 2 keys to the table, a claim number and a comment sequence key. So, there are multiple comment entries for a given claim number. Some claims have up to 105, 80 byte lines with comments. I want to concatenate all of the A80 comments into one field and display in an excel report. I tried to do this, however the maximum field length seems to be 4000. Next, I thought of creating a text field. Any ideas?
Don't have the maximum at the top of my brain this AM, but could you create multiple fields and then could not the cells be combined in excel after the fact. Of course is there a maximum number of characters for a cell in excel?
Leah
Posts: 1317 | Location: Council Bluffs, IA | Registered: May 24, 2004
Please notice that the maximum number of character in a cell in Excel is 32,767 characters. Only 1,024 display in a cell; all 32,767 display in the formula bar. So I am wondering, approximately how long can your concatenated comment be?
Hope this helps.
Cheers,
Kerry
Kerry Zhan Focal Point Moderator Information Builders, Inc.
Posts: 1948 | Location: New York | Registered: November 16, 2004
gkata WF has the best text handling capabiities on the planet. you'll want to create a single field that is the concatenation of all the individual fields however the final field need NOT be as long as all its inputs. You'll want to perform some basic cleanup operations on each of the source text fields before you begin the strong concatenation. eg LJUST to make sure each field is left -adjusted SQUEEZ to make sure embedded double blanks are reduced to a single. ARGLEN to figure out exactly how long the content is of any given field
Read the section in the 4th manual (Using Functions) on Text Functions, you'll get alot of ideas. Strong concatenation || removes trailing blanks at the end of the first field when concatenating the second. FIELD1/A10='RICKY '; FIELD2/A10='LUCY '; NEW_WEAK/A20=FIELD1 | FIELD2; NEW_STRONG/A20=FIELD1 || FIELD2 ;
In Focus since 1979///7706m/5 ;wintel 2008/64;OAM security; Oracle db, ///MRE/BID
Posts: 3811 | Location: Manhattan | Registered: October 28, 2003