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 6 numeric fields which contain numbers that are positive, negative, or zero.
I need to find the minimum absolute value that is not equal to zero for the following tests: test_1: (field_A - field_B) test_2: (field_C - field_B) test_3: (field_D - field_E) test_4: (field_F - field_E)
So if the value of the tests for one record are: test_1: 5 test_2: 0 test_3: 456 test_4: -30
Here's one part of the answer: use the MIN function.
An example:
TABLE FILE CAR
SUM
COMPUTE TEST_1/D10 = MIN(ABS(WIDTH), ABS(HEIGHT), ABS(LENGTH));
BY COUNTRY
END
To exclude the zero values, I would evaluate them to an unnaturally high number, so that they would never be returned by the MIN function. The only hole in this suggestion is if all the tests return as zero.
DEFINE FILE CAR
TEST1/D10 = IF WIDTH - HEIGHT EQ 0 THEN 999999999 ELSE WIDTH - HEIGHT;
TEST2/D10 = IF HEIGHT - SEATS EQ 0 THEN 999999999 ELSE HEIGHT - SEATS;
TEST3/D10 = IF WIDTH - LENGTH EQ 0 THEN 999999999 ELSE WIDTH - LENGTH;
END
TABLE FILE CAR
SUM
TEST1
TEST2
TEST3
COMPUTE TEST_A/D10 = MIN(ABS(TEST1), ABS(TEST2), ABS(TEST3));
BY COUNTRY
END
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server
DEFINE FILE CAR
TEST1/D10 = IF WIDTH - HEIGHT EQ 0 THEN 999999999 ELSE WIDTH - HEIGHT;
TEST2/D10 = IF HEIGHT - SEATS EQ 0 THEN 999999999 ELSE HEIGHT - SEATS;
TEST3/D10 = IF WIDTH - LENGTH EQ 0 THEN 999999999 ELSE WIDTH - LENGTH;
END
TABLE FILE CAR
SUM
TEST1
TEST2
TEST3
COMPUTE TEST_A/D10 =
IF MIN(ABS(TEST1), ABS(TEST2), ABS(TEST3)) EQ 999999999 THEN 0 ELSE MIN(ABS(TEST1), ABS(TEST2), ABS(TEST3));
BY COUNTRY
END
Francis
Give me code, or give me retirement. In FOCUS since 1991
Production: WF 7.7.05M, Dev Studio, BID, MRE, WebSphere, DB2 / Test: WF 8.1.05M, App Studio, BI Portal, Report Caster, jQuery, HighCharts, Apache Tomcat, MS SQL Server