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 one column named January it is in D20.2 format. I need specific rows in different formats: Miles should be /D20C Price / Gallon = /D20.2M Gas Cost = /D20M Percent of Something = /D20.2%
How can this be done?
January Miles 50,000 Price / Gallon $3.45 Gas Cost $172,500 Percent of 51.25% Something
FOUND THE ANSWER.... DEFINE FILE NUMBERS NR9/P20.9 = NUMBER ; NR8/P20.8 = NR9 ; NR7/P20.7 = NR8 ; NR6/P20.6 = NR7 ; NR5/P20.5 = NR6 ; NR4/P20.4 = NR5 ; NR3/P20.3 = NR4 ; NR2/P20.2 = NR3 ; NR1/P20.1 = NR2 ; NR0/P20.0 = NR1 ; FORMATX/A8 = IF (NR8 NE NR9) THEN 'D20.9' ELSE IF (NR7 NE NR8) THEN 'D20.8' ELSE IF (NR6 NE NR7) THEN 'D20.7' ELSE IF (NR5 NE NR6) THEN 'D20.6' ELSE IF (NR4 NE NR5) THEN 'D20.5' ELSE IF (NR3 NE NR4) THEN 'D20.4' ELSE IF (NR2 NE NR3) THEN 'D20.3' ELSE IF (NR1 NE NR2) THEN 'D20.2' ELSE IF (NR0 NE NR1) THEN 'D20.1' ELSE 'D20.0'; END -* TABLE FILE NUMBERS PRINT NUMBER NUMBER/FORMATX ENDThis message has been edited. Last edited by: Kerry,