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've set of values shown below, where 1.Set of records to be considered - if sum of C2 produces 1 or 'more', on every BY field 2.Set of records to be ignored - if sum of C2 produces 0, on every BY field
C1 C2
A 0
A 0
A 0
B 0
B 1
B 0
B 1
C 1
C 0
C 0
C 0
D 0
D 0
Here, A & D has to be ignored, while B & C has to be displayed.
Any help on this would be greatly appreciated.
Thanks, RifazThis message has been edited. Last edited by: Rifaz,
-Rifaz
WebFOCUS 7.7.x and 8.x
Posts: 406 | Location: India | Registered: June 13, 2013
Use a two-verb request (the first producing one row per distinct combination of the grouping keys; the second producing multiple rows per combination), and a "where total" screening condition relating to an object of the first verb.
Something like
table ...
sum max.c2 noprint by whatever
print c1 c2 by whatever
where total max.c2 gt 0;
...
From your description, I take it C2 is a non-negative integer, so either SUM. or MAX. can be used.
- Jack Gross WF through 8.1.05
Posts: 1925 | Location: NYC | In FOCUS since 1983 | Registered: January 11, 2005