Focal Point Banner


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.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] How to count number of values selected in a multiple select parameter

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] How to count number of values selected in a multiple select parameter
 Login/Join
 
Member
posted
Hi,

I have a multiple select parameter and I would like to know how I can] determine how many values were selected by the user.

For example my parameter has the following values:
Red
Orange
Yellow
Green
Blue
Violet

The user selects Red and Blue. I want to know that the user has selected 2 values from this multiple select parameter.
Is there an easy way that can be accomplished?

Thank you in advance!
Kelly

This message has been edited. Last edited by: FP Mod Chuck,


WebFOCUS 8
Windows, All Outputs
 
Posts: 12 | Registered: July 11, 2016Report This Post
Virtuoso
posted Hide Post
Figure out how many ' OR ' there are in the Variable plus 1.

so if you have
WHERE COUNTRY EQ 'ITALY' OR 'ENGLAND' OR 'FRANCE';

then the number of values selected is 2 + 1.

Here's an example I came up with:

  
-SET &NEW_COUNTRY= REPLACE(&COUNTRY, ' OR ', '');
-SET &ORIG_LEN=&COUNTRY.LENGTH;
-SET &NEW_LEN=&NEW_COUNTRY.LENGTH;
-SET &NO_OF_SELECTIONS=((&ORIG_LEN-&NEW_LEN)/4)+1;

TABLE FILE CAR
SUM CAR.BODY.DEALER_COST
BY CAR.ORIGIN.COUNTRY
BY CAR.COMP.CAR
HEADING
"NUMBER OF VALUES SELECTED: &NO_OF_SELECTIONS"
WHERE CAR.ORIGIN.COUNTRY EQ &COUNTRY.(OR(<ENGLAND,ENGLAND>, <FRANCE,FRANCE>, <ITALY,ITALY>, <JAPAN,JAPAN>, <W GERMANY,W GERMANY> |FORMAT=A10)).COUNTRY:.;
ON TABLE PCHOLD FORMAT HTML
ON TABLE SET STYLE *
ENDSTYLE
END

-RUN

This message has been edited. Last edited by: BabakNYC,


WebFOCUS 8206, Unix, Windows
 
Posts: 1853 | Location: New York City | Registered: December 30, 2015Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] How to count number of values selected in a multiple select parameter

Copyright © 1996-2020 Information Builders